This commit is contained in:
zds
2022-08-12 17:49:51 +08:00
parent d87802ba7e
commit de2d7591ee
2 changed files with 31 additions and 3 deletions

View File

@@ -486,8 +486,13 @@ export default {
})
},
mytoQuery(array1){
this.crud.query.begin_time = array1[0]
this.crud.query.end_time = array1[1]
if(array1 === null){
this.crud.query.begin_time = ''
this.crud.query.end_time = ''
}else{
this.crud.query.begin_time = array1[0]
this.crud.query.end_time = array1[1]
}
this.crud.toQuery()
},
querytable() {