测评管理调试

This commit is contained in:
cai.pingxiang
2025-12-07 19:30:06 +08:00
parent 68435d2be3
commit 2a3dcfc293
2 changed files with 6 additions and 5 deletions

View File

@@ -46,6 +46,7 @@ const store = useStore();
const isLogin = ref(false);
const isInclude = computed(() => store.state.isInclude);
console.log("版本3.3.2------------");
console.log("测试更新");
// 监听关闭浏览器
let time1 = ref(0);

View File

@@ -444,7 +444,7 @@
circleActive: selectedKeys[0] === 'sub22-2' ? true : false,
circle: selectedKeys[0] === 'sub22-2' ? false : true,
}"></span>
<a target="_blank" :href="`${evaluationManagement}?token=${getOrgToken()}`">测评管理</a>
<a target="_blank" :href="evaluationManagement">测评管理</a>
</a-menu-item>
</a-sub-menu>
<a-menu-item key="sub15" @titleClick="titleClick" v-if="checkMenu('download')">
@@ -588,7 +588,7 @@
<div class="imgBox">
<img style="width: 22px; height: 22px" src="../assets/images/navleft/review.png" />
</div>
<a target="_blank" :href="`${oldManage}?token=${getOrgToken()}`">旧版管理员界面</a>
<a target="_blank" :href="oldManage">旧版管理员界面</a>
</a-menu-item>
<!-- <router-link target="_blank" to="/oldsystemmanage">旧版管理员界面</router-link> -->
@@ -692,7 +692,7 @@
import { reactive, toRefs, onMounted, onUnmounted, watch } from "vue";
import { useRoute } from "vue-router";
import { useStore } from "vuex";
import {getOrgToken} from '@/utils/token';
import {getToken} from '@/utils/token';
import { checkMenu, checkOrgs, lecturerRoute } from "@/utils/utils";
// import { reportOrgs } from "@/api/indexProject";
export default {
@@ -1148,9 +1148,9 @@ export default {
pagename: "受众管理",
},
],
oldManage: window.location.protocol + process.env.VUE_APP_OLD_MANAGE,
oldManage: window.location.protocol + process.env.VUE_APP_OLD_MANAGE + `?token=${encodeURIComponent(getToken())}`,
evaluationManagement:
window.location.protocol + process.env.VUE_APP_EVA_MANAGE,
window.location.protocol + process.env.VUE_APP_EVA_MANAGE + `?token=${encodeURIComponent(getToken())}`,
});
const onOpenChange = (openKeys) => {