flower-mp/pages/login/index.js
2025-09-25 11:59:07 +08:00

38 lines
629 B
JavaScript

// pages/login/index.js
Page({
/**
* 页面的初始数据
*/
data: {
checked:false
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
},
read(){
if (this.data.checked === false){
wx.showModal({
content: '请先勾选我已经阅读并同意《植趣用户协议》和《植趣隐私政策》',
})
}
},
getPhoneNumber(e){
if (e.detail.errMsg != 'getPhoneNumber:ok') {
return
}
console.log(e);
},
change(e){
const tmp = this.data.checked === false
console.log(tmp);
this.setData({checked:tmp})
}
})