This commit is contained in:
cansnow
2025-11-27 03:55:38 +08:00
parent 1626f0c52a
commit 198c3dd4a5
24 changed files with 2043 additions and 201 deletions
+5 -5
View File
@@ -39,9 +39,9 @@
isRegister: false,
codeValue: "",
userInfo: {
phoneNumber: "",
mobile: "",
email:"",
areaCode: "",
region: "",
},
formData: {
password: "",
@@ -101,9 +101,9 @@
this.$refs.loginForm.validate().then((valid) => {
if (valid) {
const options = {
mobile: this.userInfo.phoneNumber,
email: this.userInfo.em,
areaCode: `+${this.userInfo.areaCode}`,
mobile: this.userInfo.mobile,
email: this.userInfo.email,
region: `+${this.userInfo.region}`,
code: this.codeValue,
password: this.formData.password,
platform: uni.$u.os(),