给进销存统计报表的库存周期增加非空限制

This commit is contained in:
jishenghua 2024-07-14 23:51:02 +08:00
parent cecb2e567c
commit 3e9ed86c1d

View File

@ -248,8 +248,8 @@
}) })
}, },
searchQuery() { searchQuery() {
if(this.queryParam.monthTime == ''){ if(this.queryParam.beginTime === '' || this.queryParam.endTime === ''){
this.$message.warning('请选择月份') this.$message.warning('请选择库存周期')
} else { } else {
this.loadData(1); this.loadData(1);
this.getTotalCountMoney(); this.getTotalCountMoney();