信达小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
2.5 KiB

2 months ago
const app = getApp<IAppOption>()
let timer = null as null | number
2 months ago
Page({
data: {
2 months ago
showTel: false,
2 months ago
mobile: '',
code: '',
2 months ago
codeText: '发送验证码',
2 months ago
2 months ago
check1: true,
check2: true,
check3: true,
2 months ago
},
2 months ago
onLoad() {},
2 months ago
getCode() {
2 months ago
if (timer) return
const mobile = this.data.mobile
2 months ago
if (!mobile) {
wx.showToast({
title: '手机号不能为空',
icon: 'none',
2 months ago
})
return
2 months ago
}
// 验证手机号
if (!/^1[3-9,]\d{9}$/.test(mobile)) {
wx.showToast({
title: '手机号格式不正确',
icon: 'none',
2 months ago
})
return
2 months ago
}
wx.ajax({
method: 'POST',
2 months ago
url: '?r=xd/login/send-verify-code',
2 months ago
data: {
mobile,
},
2 months ago
}).then((_res) => {
2 months ago
wx.showToast({
icon: 'none',
title: '验证码已发送~',
2 months ago
})
let time = 60
2 months ago
timer = setInterval(() => {
2 months ago
time--
2 months ago
this.setData({
codeText: `${time}s后重新发送`,
2 months ago
})
2 months ago
if (time <= 0) {
2 months ago
clearInterval(timer as number)
timer = null
2 months ago
this.setData({
codeText: '发送验证码',
2 months ago
})
2 months ago
}
2 months ago
}, 1000)
})
2 months ago
},
2 months ago
handleDocRule() {
const { check1, check2, check3 } = this.data
return new Promise((resolve) => {
if (check1 && check2 && check3) {
return resolve(true)
}
2 months ago
wx.showToast({
2 months ago
title: '请同意相关协议',
2 months ago
icon: 'none',
2 months ago
})
})
},
async handleSubmit() {
await this.handleDocRule()
const { mobile, code } = this.data
2 months ago
wx.ajax({
method: 'POST',
2 months ago
url: '?r=xd/login/reg-login',
2 months ago
data: {
mobile,
code,
},
2 months ago
}).then((_res) => {
this.submitCallback()
})
2 months ago
},
2 months ago
handleWxSubmit(e: WechatMiniprogram.CustomEvent) {
const { iv, encryptedData } = e.detail
2 months ago
if (iv && encryptedData) {
wx.ajax({
method: 'POST',
2 months ago
url: '?r=xd/login/wx-reg-login',
2 months ago
data: {
iv: encodeURIComponent(iv),
encryptedData: encodeURIComponent(encryptedData),
},
2 months ago
}).then((_res) => {
this.submitCallback()
})
2 months ago
}
},
submitCallback() {
2 months ago
app.getUserInfo(2).then((res) => {
if (res.PatientId) {
wx.reLaunch({
url: `/patient/pages/index/index`,
})
} else {
wx.navigateTo({
url: `/patient/pages/entryInfo/index?aid=${res.applyIntentionId}`,
})
}
})
2 months ago
},
2 months ago
handleShowTel() {
2 months ago
this.setData({
2 months ago
showTel: !this.data.showTel,
})
2 months ago
},
2 months ago
})
2 months ago
2 months ago
export {}