报表优化,增加查询条件校验

This commit is contained in:
季圣华
2021-06-04 21:23:12 +08:00
parent 16b3153b1c
commit f6d96a3f81
9 changed files with 64 additions and 4 deletions

View File

@@ -183,6 +183,13 @@
this.handleDetail(res.data, record.newType);
}
})
},
searchQuery() {
if(this.queryParam.beginTime == '' || this.queryParam.endTime == ''){
this.$message.warning('请选择单据日期!')
} else {
this.loadData(1);
}
}
}
}