mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
25 lines
516 B
JavaScript
25 lines
516 B
JavaScript
import Page from '../../common/page';
|
|
|
|
Page({
|
|
data: {
|
|
rate: 4,
|
|
slider: 50,
|
|
themeVars: {
|
|
rateIconFullColor: '#07c160',
|
|
sliderBarHeight: '4px',
|
|
sliderButtonWidth: '20px',
|
|
sliderButtonHeight: '20px',
|
|
sliderActiveBackgroundColor: '#07c160',
|
|
buttonPrimaryBorderColor: '#07c160',
|
|
buttonPrimaryBackgroundColor: '#07c160',
|
|
},
|
|
},
|
|
|
|
onChange(event) {
|
|
const { key } = event.currentTarget.dataset;
|
|
this.setData({
|
|
[key]: event.detail,
|
|
});
|
|
},
|
|
});
|