This commit is contained in:
yixu
2025-12-25 16:01:15 +08:00
parent 47b1c1db04
commit 19b9dd1ec7
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 198 KiB

View File

@@ -66,7 +66,7 @@ const handleCode = async () => {
codeStyleDisable.value = true
const result = await Request("sms/sendCode", { phone: phone.value.replace(/\s+/g, ''), test: 'uNeverN0WhatTh1s' })
const result = await Request("sms/sendCode", { phone: phone.value.replace(/\s+/g, '') })
if (result.res.status === 200) {
timedown.value = 60
@@ -87,7 +87,7 @@ const loginSubmit = async () => {
}
subloading.value = true
const result = await Request("sms/authPhone", { code: code.value, test: 'uNeverN0WhatTh1s',phone: phone.value.replace(/\s+/g, ''), agree: 1 })
const result = await Request("sms/authPhone", { code: code.value, phone: phone.value.replace(/\s+/g, ''), agree: 1 })
if (result.res.status === 200) {
const userData = Object.assign({}, Storage.get("userinfos"), { ...result.json })
Storage.set("userinfos", userData)