fix: 去掉部分控制台打印

This commit is contained in:
chenjinsong
2023-10-30 15:38:07 +08:00
parent 9a3bf1a4af
commit a4da1dbfac
2 changed files with 0 additions and 3 deletions

View File

@@ -750,7 +750,6 @@ export default {
},
tableData: {
handler (n) {
console.info(n)
if (this.tableData && this.tableData.length > 0) {
this.aiTaggingList = []
this.websketchList = []

View File

@@ -121,8 +121,6 @@ export function xAxisTimeFormatter (value) {
':' +
(date.getMinutes() < 10 ? `0${date.getMinutes()}` : date.getMinutes())
// 如果是一天的开始
console.info(date.getTime(), dayStart.getTime(), hourStart.getTime(), date.getTime() === dayStart.getTime(), date.getTime() === hourStart.getTime())
console.info(getSecond(date.getTime()), getSecond(dayStart.getTime()), getSecond(hourStart.getTime()))
if (getSecond(date.getTime()) === getSecond(dayStart.getTime())) {
return '{day|' + dateFormat(date, 'YYYY-MM-DD') + '}'
} else if (getSecond(date.getTime()) === getSecond(hourStart.getTime())) {