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 this.agencyId = user.agencyId
// //
await this.loadGrid() await this.loadGrid()
this.loadTable() // this.loadTable()
}, },
methods: { methods: {
@ -462,12 +462,17 @@ export default {
this.tableLoading = true this.tableLoading = true
if (this.startDate) { if (this.startDate) {
let array = this.startDate.split('-') let array = this.startDate.split('-')
this.formDataSearch.startDate = array[0] + array[1] + array[2] this.formDataSearch.startDate = array[0] + array[1] + array[2]
} else {
this.formDataSearch.startDate = ''
} }
if (this.endDate) { if (this.endDate) {
let array = this.endDate.split('-') let array = this.endDate.split('-')
this.formDataSearch.endDate = array[0] + array[1] + array[2] this.formDataSearch.endDate = array[0] + array[1] + array[2]
} else {
this.formDataSearch.endDate = ''
} }
const url = "/epmetuser/epidemicPrevention/user-list" const url = "/epmetuser/epidemicPrevention/user-list"

Loading…
Cancel
Save