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