jinhui.wang

日期清空

......@@ -171,6 +171,9 @@ export default {
if (this.accsDate != null && this.accsDate.length > 0) {
obj.fltDateStart = this.accsDate[0]
obj.fltDateEnd = this.accsDate[1]
} else {
obj.fltDateStart = null
obj.fltDateEnd = null
}
findDmPreMdeData(obj).then(res => {
this.tableLoading = false
......@@ -192,6 +195,9 @@ export default {
if (this.accsDate != null && this.accsDate.length > 0) {
data.fltDateStart = this.accsDate[0]
data.fltDateEnd = this.accsDate[1]
} else {
data.fltDateStart = null
data.fltDateEnd = null
}
downLoadXlsx("/dmPreMde/excel", data, "Pre-MDE查询表")
.then(() => {
......