fix: 增加账户状态功能优化完善。
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
<u-cell title="借贷名称:" titleStyle="font-weight:bolder" :value="detailInfo.name"></u-cell>
|
||||
<u-cell title="账号:" titleStyle="font-weight:bolder" :value="detailInfo.code"></u-cell>
|
||||
<u-cell title="类型:" titleStyle="font-weight:bolder" :value="detailInfo.lendType"></u-cell>
|
||||
<u-cell title="账户状态:" titleStyle="font-weight:bolder" :value="detailInfo.status"></u-cell>
|
||||
<u-cell title="备注:" titleStyle="font-weight:bolder" center :value="detailInfo.remark"> </u-cell>
|
||||
</u-cell-group>
|
||||
</view>
|
||||
@@ -38,6 +39,10 @@ onLoad((option) => {
|
||||
// 类型
|
||||
getDicts('lend_type').then(result => {
|
||||
detailInfo.value.lendType=dictStr(detailInfo.value.lendType, result.data)
|
||||
})
|
||||
// 类型
|
||||
getDicts('account_status').then(result => {
|
||||
detailInfo.value.status=dictStr(detailInfo.value.status, result.data)
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user