超链接(客户信息、其他页签属性是超链接的),点击跳转时自动刷新页面(由于第一次打开后存在缓存,文件更新后再次打开还是之前的,不是最新的)
@ -310,7 +310,9 @@
}
checkUrl(data).then(({data}) => {
if (data && data.code === 0) {
window.open(data.url);
// 强制添加时间戳避免缓存
let urlWithTimestamp = data.url + (data.url.includes('?') ? '&' : '?') + 't=' + new Date().getTime()
window.open(urlWithTimestamp)
} else {
this.$alert(data.msg, '错误', {
confirmButtonText: '确定'