Browse Source

Merge pull request '删除缴费、缴费台账功能完善' (#7) from feature_approval into develop

Reviewed-on: http://101.201.121.115:3000/leo/LAPP_MY_WEBFRONT/pulls/7
Reviewed-by: Liwei <wei.li@le-it.com.cn>
pull/9/head
Liwei 3 years ago
parent
commit
325dfca16b
2 changed files with 13 additions and 3 deletions
  1. +11
    -1
      src/views/property/fixFee.vue
  2. +2
    -2
      src/views/reportform/financial.vue

+ 11
- 1
src/views/property/fixFee.vue View File

@ -162,7 +162,7 @@ export default {
item !== 'info' &&
item !== 'chargeway'
)
} else if (this.queryHistoryParams.chargetype === 2) {
} else if (this.queryParams.chargetype === 2) {
this.headers = Object.keys(this.dataList[0]).filter(
(item) =>
item !== 'propertyid' &&
@ -171,9 +171,19 @@ export default {
item !== 'info' &&
item !== 'chargeway'
)
} else if (this.queryParams.chargetype === 3) {
this.headers = Object.keys(this.dataList[0]).filter(
(item) =>
item !== 'propertyid' &&
item !== 'accesscardid' &&
item !== 'chargenr' &&
item !== 'info' &&
item !== 'chargeway'
)
} else {
this.headers = Object.keys(this.dataList[0]).filter(
(item) =>
item !== 'carportid' &&
item !== 'propertyid' &&
item !== 'accesscardid' &&
item !== 'chargenr' &&


+ 2
- 2
src/views/reportform/financial.vue View File

@ -282,11 +282,11 @@ export default {
this.headers = Object.keys(this.dataList[0]).filter(
(item) => item !== 'accesscardid' && item !== 'carportid'
)
} else if (this.queryHistoryParams.chargetype === 2) {
} else if (this.queryParams.chargetype === 2) {
this.headers = Object.keys(this.dataList[0]).filter(
(item) => item !== 'propertyid' && item !== 'carportid'
)
} else if (this.queryHistoryParams.chargetype === 3) {
} else if (this.queryParams.chargetype === 3) {
this.headers = Object.keys(this.dataList[0]).filter(
(item) => item !== 'propertyid' && item !== 'accesscardid'
)


Loading…
Cancel
Save