fix: 自测bug修复。

This commit is contained in:
tianyongbao
2026-01-29 21:56:33 +08:00
parent 3f2e2ffc69
commit a9e605b785
3 changed files with 24 additions and 23 deletions

View File

@@ -69,15 +69,7 @@
<text class="info-label">银行简称</text>
<text class="info-value">{{ item.bankShortName || '--' }}</text>
</view>
<view class="info-item" v-if="item.province || true">
<text class="info-label">归属省份</text>
<text class="info-value">{{ item.province || '--' }}</text>
</view>
<view class="info-item" v-if="item.city || true">
<text class="info-label">归属城市</text>
<text class="info-value">{{ item.city || '--' }}</text>
</view>
<view class="info-item" v-if="item.englishShortName || true">
<view class="info-item" v-if="item.englishShortName || true">
<text class="info-label">英文简称</text>
<text class="info-value">{{ item.englishShortName || '--' }}</text>
</view>
@@ -85,6 +77,15 @@
<text class="info-label">信用卡多账户合并出账</text>
<text class="info-value">{{ dictStr(item.multiAccountConsolidated, accountingList) || '--' }}</text>
</view>
<view class="info-item" v-if="item.province">
<text class="info-label">归属省份</text>
<text class="info-value">{{ item.province }}</text>
</view>
<view class="info-item" v-if="item.city">
<text class="info-label">归属城市</text>
<text class="info-value">{{ item.city }}</text>
</view>
<view class="info-item info-item-full" v-if="item.remark">
<text class="info-label">备注</text>
<text class="info-value">{{ item.remark }}</text>