Parcourir la source

Merge branch 'develop' into test

test
JinxChen il y a 1 an
Parent
révision
ab8f609c15
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/views/ai-call-alarm/index.vue

+ 1
- 1
src/views/ai-call-alarm/index.vue Voir le fichier

@@ -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: '链接已失效',


Chargement…
Annuler
Enregistrer