时间提示

This commit is contained in:
helloDy 2024-01-30 14:13:35 +08:00
parent 62f1901c72
commit 101dc1807e

View File

@ -281,11 +281,11 @@ export default {
async handleSearchBarBtnClick({ btnName, timeVal }) { async handleSearchBarBtnClick({ btnName, timeVal }) {
if (timeVal && timeVal.length > 0) { if (timeVal && timeVal.length > 0) {
console.log('nihc ', timeVal) console.log('nihc ', timeVal)
if (new Date(timeVal[1]).getTime() - new Date(timeVal[0]).getTime() <= 10 * 60 * 1000) { if (new Date(timeVal[1]).getTime() - new Date(timeVal[0]).getTime() <= 30 * 60 * 1000) {
this.queryParams.recordTime = timeVal; this.queryParams.recordTime = timeVal;
await this.handleQuery(); await this.handleQuery();
} else { } else {
this.$message.warning('时间范围最大一小时限制!') this.$message.warning('时间范围最大30分钟限制!')
} }
} else { } else {
this.queryParams.recordTime = []; this.queryParams.recordTime = [];