switch
Page({
data: {
color: '',
colorList: [{
name: 'blue',
value: "蓝色"
}, {
name: '#333',
name: '',
value: "默认样式",
checked: 'true'
}],
},
switch1Change: function (e) {
switch2Change: function (e) {
console.log('switch2 发生 change 事件,携带值为', e.detail.value);
},
changeColor(e) {
console.log(e);
this.setData({
color: e.detail.value
});