bugfix: 参数提交错误

This commit is contained in:
2026-02-25 14:43:14 +08:00
parent 73b8503ac7
commit 1bd0e6334c
4 changed files with 5 additions and 14 deletions

View File

@@ -28,11 +28,7 @@ body,
transform: rotate(360deg);
}
}
.background-pink {
background-color: #f8f7f5;
background-image: url('@/assets/images/home-bg.png');
background-size: 100% 100%;
}
.flex {
display: flex;

View File

@@ -33,10 +33,5 @@ body,
}
}
.background-pink {
background-color: rgba(248, 247, 245, 1);
background-image: url('@/assets/images/home-bg.png');
background-size: 100% 100%;
}

View File

@@ -662,8 +662,8 @@ const handleVerifyCode = () => {
}).then((res) => {
// console.log('coderes', res)
// form.value.secureToken = res.data.secureToken
form.value.secureToken = '123456'
form.value.secureToken = res.data.secureToken
// form.value.secureToken = '123456'
message.success(t('AwardApply.verificationSuccess'))
showModal.value = false
@@ -685,7 +685,7 @@ const handleSubmitForm = () => {
.then((res) => {
// console.log(res)
Https.axiosPost(Https.httpUrls.submitForm, form.value).then((res) => {
console.log('res', res)
// console.log('res', res)
isCompleted.value = true
})
})