Showing
1 changed file
with
4 additions
and
4 deletions
| ... | @@ -16,8 +16,8 @@ | ... | @@ -16,8 +16,8 @@ |
| 16 | <text class="setting-label">收款账号</text> | 16 | <text class="setting-label">收款账号</text> |
| 17 | </view> | 17 | </view> |
| 18 | <view class="setting-right"> | 18 | <view class="setting-right"> |
| 19 | - <text class="setting-status" :class="{ 'status-set': accountInfo.bankName }"> | 19 | + <text class="setting-status" :class="{ 'status-set': accountInfo.bankName && accountInfo.bankAccount && accountInfo.bankImg }"> |
| 20 | - {{ accountInfo.bankName ? '已设置' : '未设置' }} | 20 | + {{ accountInfo.bankName && accountInfo.bankAccount && accountInfo.bankImg ? '已设置' : '未设置' }} |
| 21 | </text> | 21 | </text> |
| 22 | <!-- <text class="arrow">></text> --> | 22 | <!-- <text class="arrow">></text> --> |
| 23 | <RectRight color="#999" size="10" /> | 23 | <RectRight color="#999" size="10" /> |
| ... | @@ -30,8 +30,8 @@ | ... | @@ -30,8 +30,8 @@ |
| 30 | <text class="setting-label">身份信息</text> | 30 | <text class="setting-label">身份信息</text> |
| 31 | </view> | 31 | </view> |
| 32 | <view class="setting-right"> | 32 | <view class="setting-right"> |
| 33 | - <text class="setting-status" :class="{ 'status-set': identityInfo.userName }"> | 33 | + <text class="setting-status" :class="{ 'status-set': identityInfo.userName && identityInfo.idCard && identityInfo.idcard_1_img && identityInfo.idcard_2_img && identityInfo.idcard_effect_begin && identityInfo.idcard_effect_end && identityInfo.idcard_address }"> |
| 34 | - {{ identityInfo.userName ? '已设置' : '未设置' }} | 34 | + {{ identityInfo.userName && identityInfo.idCard && identityInfo.idcard_1_img && identityInfo.idcard_2_img && identityInfo.idcard_effect_begin && identityInfo.idcard_effect_end && identityInfo.idcard_address ? '已设置' : '未设置' }} |
| 35 | </text> | 35 | </text> |
| 36 | <!-- <text class="arrow">></text> --> | 36 | <!-- <text class="arrow">></text> --> |
| 37 | <RectRight color="#999" size="10" /> | 37 | <RectRight color="#999" size="10" /> | ... | ... |
-
Please register or login to post a comment