This commit is contained in:
曹辉 2023-05-26 09:22:01 +08:00
parent ecc7782cea
commit e353b5fc36
2 changed files with 4 additions and 2 deletions

View File

@ -351,7 +351,8 @@
var ordertimes = this.list.createTime.replaceAll(/\-/gi, "/")
var time = new Date(ordertimes).getTime() / 1000 + (60 * 60 * 2)
var times = new Date().getTime() / 1000
this.timestamp = time - times
// this.timestamp = time - times
this.timestamp = 10
if (this.timestamp >= 0) {
this.timecount = this.timestamp
this.Timers = setInterval(() => {

View File

@ -284,7 +284,8 @@
var ordertimes = this.order.orderTime.replaceAll(/\-/gi, "/")
var time = new Date(ordertimes).getTime() / 1000 + (60 * 60 * 2)
var times = new Date().getTime() / 1000
this.timestamp = time - times
// this.timestamp = time - times
this.timestamp = 10
if (this.timestamp >= 0) {
this.timecount = this.timestamp
this.Timers = setInterval(() => {