Fix:验证码发送按钮消失
This commit is contained in:
@@ -189,14 +189,16 @@
|
|||||||
v-model="form.phone"
|
v-model="form.phone"
|
||||||
border="none"
|
border="none"
|
||||||
>
|
>
|
||||||
<template slot="suffix" v-if="form.reviewStatus !== 0">
|
<template slot="suffix" >
|
||||||
<u-code
|
<u-code
|
||||||
|
v-if="form.reviewStatus !== 0"
|
||||||
ref="uCode"
|
ref="uCode"
|
||||||
@change="codeChange"
|
@change="codeChange"
|
||||||
seconds="30"
|
seconds="30"
|
||||||
changeText="X秒重新获取"
|
changeText="X秒重新获取"
|
||||||
></u-code>
|
></u-code>
|
||||||
<u-button
|
<u-button
|
||||||
|
v-if="form.reviewStatus !== 0"
|
||||||
@tap="getCode"
|
@tap="getCode"
|
||||||
:text="tips"
|
:text="tips"
|
||||||
type="success"
|
type="success"
|
||||||
@@ -274,7 +276,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="v12-primary v12-white-text submit-btn" @click="submitForm" :style="{'background-color': form.reviewStatus === 0 ? '#FA979F ' : '#4A97FC'}">
|
<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>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user