fix: 借贷账户管理,功能优化。
This commit is contained in:
@@ -45,6 +45,7 @@
|
||||
|
||||
<view class="card-body">
|
||||
<view class="info-row">
|
||||
|
||||
<view class="info-item" v-if="dictStr(item.lendType, lendTypeList) || true">
|
||||
<text class="info-label">账户类型</text>
|
||||
<text class="info-value">{{ dictStr(item.lendType, lendTypeList) || '--' }}</text>
|
||||
@@ -53,9 +54,19 @@
|
||||
<text class="info-label">账户状态</text>
|
||||
<text class="info-value" :class="getStatusClass(item.status, dictStr(item.status, statusList))">{{ dictStr(item.status, statusList) || '--' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="info-row">
|
||||
<view class="info-item info-item-full" v-if="item.remark">
|
||||
<view class="info-item" v-if="item.bankName">
|
||||
<text class="info-label">银行</text>
|
||||
<text class="info-value">{{ item.bankName }}</text>
|
||||
</view>
|
||||
<view class="info-item" v-if="item.activationDate">
|
||||
<text class="info-label">开通日期</text>
|
||||
<text class="info-value">{{ item.activationDate }}</text>
|
||||
</view>
|
||||
<view class="info-item" v-if="item.effectiveDate ">
|
||||
<text class="info-label">注销日期</text>
|
||||
<text class="info-value">{{ item.effectiveDate }}</text>
|
||||
</view>
|
||||
<view class="info-item" v-if="item.remark">
|
||||
<text class="info-label">备注</text>
|
||||
<text class="info-value">{{ item.remark }}</text>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user