|
@@ -225,7 +225,7 @@
|
|
|
// 动态创建链接并跳转
|
|
|
const link = document.createElement('a');
|
|
|
link.href = '/admin/bigScreenDetail/index.html?id=' + encodeURIComponent(id);
|
|
|
- link.target = '_blank'; // 设置链接在新标签页中打开
|
|
|
+ /*link.target = '_blank'; // 设置链接在新标签页中打开*/
|
|
|
document.body.appendChild(link);
|
|
|
link.click();
|
|
|
|