fix: 增加账户状态功能优化完善。

This commit is contained in:
tianyongbao
2024-07-18 19:26:22 +08:00
parent 0ad573e209
commit 6cff60c160
46 changed files with 360 additions and 36 deletions

View File

@@ -37,6 +37,10 @@
<text class="row-label">储蓄卡类型</text>
<text class="row-value">{{ dictStr(item.debitType, debitTypeList) }}</text>
</view>
<view class="item-row">
<text class="row-label">账户状态</text>
<text class="row-value">{{ dictStr(item.status, statusList) }}</text>
</view>
<!-- <view class="item-row">
<text class="row-label">储蓄卡卡号</text>
<text class="row-value">{{ item.code }}</text>
@@ -80,6 +84,7 @@ const listData = ref([])
const isShow = ref(false)
const status = ref('loadmore')
const debitTypeList = ref([])
const statusList = ref([])
const settingPickShow = ref(false)
const settingColumns = ref([])
const data = reactive({
@@ -130,6 +135,10 @@ function getDict() {
getDicts('debit_type').then(res => {
debitTypeList.value = res.data
})
// 账户状态
getDicts('account_status').then(res => {
statusList.value = res.data
})
}
function settingConfirm(e) {
queryParams.value.settingId = e.value[0].settingId