mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
23 lines
370 B
JavaScript
23 lines
370 B
JavaScript
Page({
|
|
data: {
|
|
checked: true,
|
|
checked2: true
|
|
},
|
|
|
|
onChange({ detail }) {
|
|
this.setData({ checked: detail });
|
|
},
|
|
|
|
onChange2({ detail }) {
|
|
wx.showModal({
|
|
title: '提示',
|
|
content: '是否切换开关?',
|
|
success: res => {
|
|
if (res.confirm) {
|
|
this.setData({ checked2: detail });
|
|
}
|
|
}
|
|
});
|
|
}
|
|
});
|