ソースを参照

修改 判断条件

master
JinxChen 1年前
コミット
58462f748d
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/views/ai-call-alarm/index.vue

+ 1
- 1
src/views/ai-call-alarm/index.vue ファイルの表示

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


読み込み中…
キャンセル
保存