address-edit.js
311 Bytes
let app = getApp();
Page({
data: {
authorizeVisible: false,
value: "",
checked: true,
},
onShareAppMessage() {},
showAuth() {
this.setData({
authorizeVisible: true
})
},
onLoad(options) {},
onChange(event) {
this.setData({
checked: event.detail
});
}
})