fix(slider): fix slider can't swipe (#5079)

Co-authored-by: liuhaihonggia <liuhaihong@youzan.com>
This commit is contained in:
landluck 2022-10-31 13:05:36 +08:00 committed by GitHub
parent eb50789df3
commit 5e87650fe2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 4 deletions

View File

@ -1,6 +1,6 @@
import { dirname, resolve } from 'path';
import { fileURLToPath } from 'url';
import { dev } from '@vant/cli';
import { dev } from '@vant/cli/lib/commands/dev.js';
import { exec } from 'child_process';
const __dirname = dirname(fileURLToPath(import.meta.url));

View File

@ -193,15 +193,24 @@ VantComponent({
return max - min;
},
getOffsetWidth(current: number, min: number) {
const scope = this.getScope();
// 避免最小值小于最小step时出现负数情况
return `${Math.max((current - min) * 100 / scope, 0)}%`;
},
// 计算选中条的长度百分比
calcMainAxis() {
const { value } = this;
const { min } = this.data;
const scope = this.getScope();
if (this.isRange(value)) {
return `${((value[1] - value[0]) * 100) / scope}%`;
return this.getOffsetWidth(value[1], value[0]);
}
return `${((value - Number(min)) * 100) / scope}%`;
return this.getOffsetWidth(value, Number(min));
},
// 计算选中条的开始位置的偏移量