浏览代码

Merge branch 'develop' into test

test
JinxChen 1年前
父节点
当前提交
ab8f609c15
共有 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 再取整
const nowTime = (new Date().getTime() / 1000).toFixed();
const twoHours = 7200;
if(nowTime - createTime < twoHours) {
if(nowTime - createTime > twoHours) {
// 增加过期失效判断,根据接口返回的创建时间与现在时间比较,超过两个小时提示链接过期并且不再跳转
this.$dialog.confirm({
message: '链接已失效',


正在加载...
取消
保存