-
-
-
+
+ 实验台
+ 能力测评
+ 实验记录
+ 考核列表
+ 课程学习
+ 资讯
+ 线上赛事
+
\ No newline at end of file
diff --git a/src/setting.js b/src/setting.js
index 1a575f4..ea23d99 100644
--- a/src/setting.js
+++ b/src/setting.js
@@ -42,9 +42,9 @@ if (isHh) {
title = "职站";
} else if (isDev) {
// 本地
- host = "http://39.108.250.202:9000/"; // 中台测试服
+ // host = "http://39.108.250.202:9000/"; // 中台测试服
// host = "http://192.168.31.137:9000/"; // 赓
- // host = "http://192.168.31.151:9000/"; // 榕
+ host = "http://192.168.31.151:9000/"; // 榕
// host = "http://192.168.31.125:9000/"; // 坤
systemPath = "http://192.168.31.154/";
defaultSubSystem = "http://39.108.250.202/pyTrials/#/";
diff --git a/src/store/modules/user.js b/src/store/modules/user.js
index 85bd7c7..1e2bd5a 100644
--- a/src/store/modules/user.js
+++ b/src/store/modules/user.js
@@ -10,6 +10,7 @@ import addRoutes from "@/libs/route/addRoutes";
export default {
namespaced: true,
state: {
+ activeTab: "/station/list", // 当前激活菜单
title: "",
logoUrl: "",
avatar: "https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png",
@@ -41,7 +42,10 @@ export default {
},
SET_USERNAME: (state, userName) => {
state.userName = userName;
- }
+ },
+ SET_ACTIVE_TAB: (state, activeTab) => {
+ state.activeTab = activeTab;
+ },
},
actions: {
login({ state, commit }, userInfo) {
@@ -91,6 +95,9 @@ export default {
},
setUserName({ state, commit }, userName) {
commit("SET_USERNAME", userName);
+ },
+ setActiveTab({ state, commit }, activeTab) {
+ commit("SET_ACTIVE_TAB", activeTab);
}
}
};
\ No newline at end of file