mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 02:12:43 +08:00
fix(slider): fix slider can't swipe (#5079)
Co-authored-by: liuhaihonggia <liuhaihong@youzan.com>
This commit is contained in:
parent
eb50789df3
commit
5e87650fe2
@ -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));
|
||||
|
@ -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));
|
||||
},
|
||||
|
||||
// 计算选中条的开始位置的偏移量
|
||||
|
Loading…
x
Reference in New Issue
Block a user