Browse Source

欠费查询

pull/16/head
wangxy 3 years ago
parent
commit
18790c2b0c
1 changed files with 13 additions and 11 deletions
  1. +13
    -11
      src/views/reportform/expire.vue

+ 13
- 11
src/views/reportform/expire.vue View File

@ -74,17 +74,11 @@ export default {
//
dataList: [],
//
headers: [
'cid',
'chargetype',
'propertyid',
'constructionarea',
'unitprice',
'owetime',
'chargetime',
'lengthdate',
'chargableexpense'
],
headers: [],
headers1: ['cid','chargetype','propertyid','constructionarea','unitprice','owetime','chargetime','lengthdate','chargableexpense'],
headers2: ['cid','chargetype','propertyid','accesscardid','unitprice','owetime','chargetime','lengthdate','chargableexpense'],
headers3: ['cid','chargetype','propertyid','carportid','unitprice','rentoutPrice',
'owetime','chargetime','lengthdate','chargableexpense'],
//
loading: true,
//
@ -111,6 +105,14 @@ export default {
methods: {
/** 查询角色列表 */
getList() {
this.headers = []
if (this.queryParams.chargetype == 1) { //
this.headers = this.headers1
} else if (this.queryParams.chargetype == 2) { //
this.headers = this.headers2
} else { //
this.headers = this.headers3
}
this.loading = true
this.currentDate = this.queryParams.startDate || moment().format('YYYY-MM-DD')
getExpireList(this.queryParams).then(


Loading…
Cancel
Save