Fix:验证码发送按钮消失

This commit is contained in:
LinCyJang
2025-10-12 21:43:59 +08:00
parent 52adbc07d9
commit 11f665aecc
+4 -2
View File
@@ -189,14 +189,16 @@
v-model="form.phone"
border="none"
>
<template slot="suffix" v-if="form.reviewStatus !== 0">
<template slot="suffix" >
<u-code
v-if="form.reviewStatus !== 0"
ref="uCode"
@change="codeChange"
seconds="30"
changeText="X秒重新获取"
></u-code>
<u-button
v-if="form.reviewStatus !== 0"
@tap="getCode"
:text="tips"
type="success"
@@ -274,7 +276,7 @@
</view>
</view>
<view class="v12-primary v12-white-text submit-btn" @click="submitForm" :style="{'background-color': form.reviewStatus === 0 ? '#FA979F ' : '#4A97FC'}">
{{ form.reviewStatus === 0 ? '审核中' : form.reviewStatus === 2 ? '已驳回' : '提交审核' }}
{{ form.reviewStatus === 0 ? '审核中' : form.reviewStatus === 2 ? '重新提交' : '提交审核' }}
</view>
</view>
</template>