We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
项目版本:mand-mobile2.3.0 复现步骤及解决方案如下: 1、range使用默认值false,设置min为50 max为100 2、滑动滑块,发现默认的蓝色进度条所在百分比不对 3、原因:由于在**/components/slider/index.vue 获得barStyle值 计算width有误, 4、解决方法: 可将**/components/slider/index.vue 的126行 width: this.values[0] / (this.max - this.min) * 100 + '%', 修改为如下即可 width: (this.values[0] - this.min) / (this.max - this.min) * 100 + '%'
The text was updated successfully, but these errors were encountered:
已复现,我们会尽快修复
Sorry, something went wrong.
fix(slider): fix wrong tab-bar display bug without range in min & max
62a361b
fix #472
fix(slider): fix wrong tab-bar display bug without range in min & max (…
f016d8b
…#473) fix #472
supergaojian
No branches or pull requests
项目版本:mand-mobile2.3.0
复现步骤及解决方案如下:
1、range使用默认值false,设置min为50 max为100
2、滑动滑块,发现默认的蓝色进度条所在百分比不对
3、原因:由于在**/components/slider/index.vue 获得barStyle值 计算width有误,
4、解决方法:
可将**/components/slider/index.vue 的126行
width: this.values[0] / (this.max - this.min) * 100 + '%',
修改为如下即可
width: (this.values[0] - this.min) / (this.max - this.min) * 100 + '%'
The text was updated successfully, but these errors were encountered: