fix(Notify & Slider): fix eslint error (#2702)

This commit is contained in:
rex 2020-01-19 15:18:49 +08:00 committed by GitHub
parent 8571a6e67e
commit 358beafbde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ function getContext() {
}
export default function Notify(options: NotifyOptions | string) {
options = Object.assign({}, defaultOptions, parseOptions(options));
options = { ...defaultOptions, ...parseOptions(options) } as NotifyOptions;
const context = options.context || getContext();
const notify = context.selectComponent(options.selector);
@ -57,7 +57,7 @@ export default function Notify(options: NotifyOptions | string) {
}
Notify.clear = function(options?: NotifyOptions) {
options = Object.assign({}, defaultOptions, parseOptions(options));
options = { ...defaultOptions, ...parseOptions(options) } as NotifyOptions;
const context = options.context || getContext();
const notify = context.selectComponent(options.selector);

View File

@ -60,7 +60,7 @@ VantComponent({
this.dragStatus = 'draging';
this.getRect('.van-slider').then((rect: WechatMiniprogram.BoundingClientRectCallbackResult) => {
const diff = this.deltaX / rect.width * 100;
const diff = (this.deltaX / rect.width) * 100;
this.newValue = this.startValue + diff;
this.updateValue(this.newValue, false, true);
});
@ -81,7 +81,7 @@ VantComponent({
const { min } = this.data;
this.getRect('.van-slider').then((rect: WechatMiniprogram.BoundingClientRectCallbackResult) => {
const value = (event.detail.x - rect.left) / rect.width * this.getRange() + min;
const value = ((event.detail.x - rect.left) / rect.width) * this.getRange() + min;
this.updateValue(value, true);
});
},