Explorar el Código

修改 判断条件

master
JinxChen hace 1 año
padre
commit
58462f748d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/views/ai-call-alarm/index.vue

+ 1
- 1
src/views/ai-call-alarm/index.vue Ver fichero

@@ -51,7 +51,7 @@ export default {
// 13位时间戳 除以 1000 再取整
const nowTime = (new Date().getTime() / 1000).toFixed();
const twoHours = 7200;
if(nowTime - createTime < twoHours) {
if(nowTime - createTime > twoHours) {
// 增加过期失效判断,根据接口返回的创建时间与现在时间比较,超过两个小时提示链接过期并且不再跳转
this.$dialog.confirm({
message: '链接已失效',


Cargando…
Cancelar
Guardar