jiangyy 3 years ago
parent
commit
66279482c6
  1. 7
      src/views/modules/base/epidemic/veroFocus/veroFocusAdd.vue

7
src/views/modules/base/epidemic/veroFocus/veroFocusAdd.vue

@ -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"

Loading…
Cancel
Save