Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
jgdl
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-08-07 15:54:27 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5d7a7be3625f8c7ec5171122ff34774b08605e8a
5d7a7be3
1 parent
0c658fd8
fix(collectionSettings): 完善收款账号和身份信息的设置状态判断条件
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
src/pages/collectionSettings/index.vue
src/pages/collectionSettings/index.vue
View file @
5d7a7be
...
...
@@ -16,8 +16,8 @@
<text class="setting-label">收款账号</text>
</view>
<view class="setting-right">
<text class="setting-status" :class="{ 'status-set': accountInfo.bankName }">
{{ accountInfo.bankName ? '已设置' : '未设置' }}
<text class="setting-status" :class="{ 'status-set': accountInfo.bankName
&& accountInfo.bankAccount && accountInfo.bankImg
}">
{{ accountInfo.bankName
&& accountInfo.bankAccount && accountInfo.bankImg
? '已设置' : '未设置' }}
</text>
<!-- <text class="arrow">></text> -->
<RectRight color="#999" size="10" />
...
...
@@ -30,8 +30,8 @@
<text class="setting-label">身份信息</text>
</view>
<view class="setting-right">
<text class="setting-status" :class="{ 'status-set': identityInfo.userName }">
{{ identityInfo.userName ? '已设置' : '未设置' }}
<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
}">
{{ identityInfo.userName
&& identityInfo.idCard && identityInfo.idcard_1_img && identityInfo.idcard_2_img && identityInfo.idcard_effect_begin && identityInfo.idcard_effect_end && identityInfo.idcard_address
? '已设置' : '未设置' }}
</text>
<!-- <text class="arrow">></text> -->
<RectRight color="#999" size="10" />
...
...
Please
register
or
login
to post a comment