Commit c3bd0a2656de7f42b013a4432ed802b97a1444ac
1 parent
32e6d877
v1.9 电话报修 业主信息没有带出来问题
Showing
1 changed file
with
19 additions
and
0 deletions
src/views/fee/feeConfigManageList.vue
| ... | ... | @@ -220,6 +220,25 @@ export default { |
| 220 | 220 | statusCd: '' |
| 221 | 221 | } |
| 222 | 222 | this.feeTypeCds = [_feeTypeCds, ...data] |
| 223 | + | |
| 224 | + const feeFlags = await getDict('pay_fee_config', 'fee_flag') | |
| 225 | + this.feeFlags = [{ | |
| 226 | + name: this.$t('common.all'), | |
| 227 | + statusCd: '' | |
| 228 | + }, ...feeFlags] | |
| 229 | + | |
| 230 | + const paymentCds = await getDict('pay_fee_config', 'payment_cd') | |
| 231 | + this.paymentCds = [{ | |
| 232 | + name: this.$t('common.all'), | |
| 233 | + statusCd: '' | |
| 234 | + },...paymentCds] | |
| 235 | + | |
| 236 | + const isDefaults = await getDict('pay_fee_config', 'is_default') | |
| 237 | + this.isDefaults = [{ | |
| 238 | + name: this.$t('common.all'), | |
| 239 | + statusCd: '' | |
| 240 | + }, ...isDefaults] | |
| 241 | + | |
| 223 | 242 | }, |
| 224 | 243 | |
| 225 | 244 | async _listFeeConfigs() { | ... | ... |