dm-wechat-mini/pages/login/login.js
2025-01-09 05:43:21 +08:00

28 lines
455 B
JavaScript

Page({
data: {
isAgree: false
},
handleAgreeChange(e) {
this.setData({
isAgree: e.detail.value.length > 0
})
},
handleLogin() {
if (!this.data.isAgree) {
wx.showToast({
title: '请先同意用户协议和隐私政策',
icon: 'none'
})
return
}
wx.login({
success: (res) => {
// 实现登录逻辑
console.log('登录成功', res)
}
})
}
})