mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
40 lines
851 B
JavaScript
40 lines
851 B
JavaScript
import Page from '../../common/page';
|
|
|
|
Page({
|
|
data: {
|
|
checkbox1: true,
|
|
checkbox2: true,
|
|
checkbox3: true,
|
|
checkboxLabel: true,
|
|
checkboxSize: true,
|
|
checkboxShape: true,
|
|
list: ['a', 'b', 'c'],
|
|
result: ['a', 'b'],
|
|
result2: [],
|
|
result3: [],
|
|
result4: [],
|
|
activeIcon: 'https://img.yzcdn.cn/vant/user-active.png',
|
|
inactiveIcon: 'https://img.yzcdn.cn/vant/user-inactive.png',
|
|
},
|
|
|
|
onChange(event) {
|
|
const { key } = event.currentTarget.dataset;
|
|
this.setData({ [key]: event.detail });
|
|
},
|
|
|
|
onClick(event) {
|
|
const { value } = event.currentTarget.dataset;
|
|
this.setData({
|
|
radio3: value,
|
|
});
|
|
},
|
|
|
|
toggle(event) {
|
|
const { index } = event.currentTarget.dataset;
|
|
const checkbox = this.selectComponent(`.checkboxes-${index}`);
|
|
checkbox.toggle();
|
|
},
|
|
|
|
noop() {},
|
|
});
|