修改bug

This commit is contained in:
‘937886381’
2024-07-01 11:51:44 +08:00
parent 384527d6db
commit 716c88dfc4
5 changed files with 21 additions and 6 deletions

View File

@@ -635,6 +635,9 @@ export default {
if (!this.listQuery.startDate && !this.listQuery.endDate) {
return this.$message('请选择起止时间')
}
if (!this.listQuery.type) {
return this.$message('请选择时间维度')
}
let arr = []
this.currentMenu === '邯郸' ? arr.push(1) : arr.push(0)
this.listQuery.factory = arr
@@ -1312,7 +1315,7 @@ export default {
this.$message.success("导出成功");
})
.catch(() => { });
},
},
},
};
</script>