From fe25b9d9dc98187a0b885631bc39dfd5daa15163 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期四, 20 十一月 2025 17:26:04 +0800
Subject: [PATCH] 工位改为默认查询所有状态
---
src/layout/index.vue | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/src/layout/index.vue b/src/layout/index.vue
index a7c9f67..0b37c76 100644
--- a/src/layout/index.vue
+++ b/src/layout/index.vue
@@ -296,7 +296,11 @@
if(foundRoute.isOpen != "2") {
this.$router.push({path: key});
}else {
- window.open(key + `?token=${TOKEN}`,'_blank');
+ if(key.indexOf("?") > -1) {
+ window.open(key + `&token=${TOKEN}`,'_blank');
+ }else {
+ window.open(key + `?token=${TOKEN}`,'_blank');
+ }
}
},
openSetting(){
--
Gitblit v1.9.3