|
|
@ -434,7 +434,7 @@ export default { |
|
|
|
this.agencyId = user.agencyId |
|
|
|
//获取网格下拉框数据 |
|
|
|
await this.loadGrid() |
|
|
|
this.loadTable() |
|
|
|
// this.loadTable() |
|
|
|
}, |
|
|
|
|
|
|
|
methods: { |
|
|
@ -462,12 +462,17 @@ export default { |
|
|
|
this.tableLoading = true |
|
|
|
|
|
|
|
if (this.startDate) { |
|
|
|
|
|
|
|
let array = this.startDate.split('-') |
|
|
|
this.formDataSearch.startDate = array[0] + array[1] + array[2] |
|
|
|
} else { |
|
|
|
this.formDataSearch.startDate = '' |
|
|
|
} |
|
|
|
if (this.endDate) { |
|
|
|
let array = this.endDate.split('-') |
|
|
|
this.formDataSearch.endDate = array[0] + array[1] + array[2] |
|
|
|
} else { |
|
|
|
this.formDataSearch.endDate = '' |
|
|
|
} |
|
|
|
|
|
|
|
const url = "/epmetuser/epidemicPrevention/user-list" |
|
|
|