v1.9 电话报修 业主信息没有带出来问题

This commit is contained in:
wuxw 2025-08-21 19:57:26 +08:00
parent 32e6d87749
commit c3bd0a2656

View File

@ -220,6 +220,25 @@ export default {
statusCd: '' statusCd: ''
} }
this.feeTypeCds = [_feeTypeCds, ...data] this.feeTypeCds = [_feeTypeCds, ...data]
const feeFlags = await getDict('pay_fee_config', 'fee_flag')
this.feeFlags = [{
name: this.$t('common.all'),
statusCd: ''
}, ...feeFlags]
const paymentCds = await getDict('pay_fee_config', 'payment_cd')
this.paymentCds = [{
name: this.$t('common.all'),
statusCd: ''
},...paymentCds]
const isDefaults = await getDict('pay_fee_config', 'is_default')
this.isDefaults = [{
name: this.$t('common.all'),
statusCd: ''
}, ...isDefaults]
}, },
async _listFeeConfigs() { async _listFeeConfigs() {