修复小时数计算逻辑
This commit is contained in:
@@ -97,7 +97,7 @@ export default {
|
||||
},
|
||||
handleSta({hour}) {
|
||||
this.handleMouseout()
|
||||
const hourNum = Number(hour?.substring(0, 2) || -1)
|
||||
const hourNum = Number(hour?.substring(0, 2) || -2) + 1
|
||||
this.$set(this.$marketBoard, 'saleHour', hourNum < this.search.hourNum ? hourNum : undefined)
|
||||
const rowIndex = this.tableData.findIndex(e => e.hour == hour)
|
||||
const v = this
|
||||
|
||||
Reference in New Issue
Block a user