Browse Source

2025-07-08

超链接(客户信息、其他页签属性是超链接的),点击跳转时自动刷新页面(由于第一次打开后存在缓存,文件更新后再次打开还是之前的,不是最新的)
master
fengyuan_yang 6 months ago
parent
commit
67d892e25c
  1. 4
      src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_demoSlot.vue

4
src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_demoSlot.vue

@ -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: '确定'

Loading…
Cancel
Save