|
@@ -117,14 +117,15 @@ export default {
|
|
|
});
|
|
|
var _isLogin = this.$cookies.get("tlogin");
|
|
|
var userInfo = this.$cookies.get("teacherInfo");
|
|
|
- if (_isLogin == "1" && userInfo && (userInfo.userid == this.userid)) {
|
|
|
+ if (_isLogin == "1" && userInfo && userInfo.userid == this.userid) {
|
|
|
loading.close();
|
|
|
this.$store.commit("update", ["isLogin", true]);
|
|
|
// var info = JSON.parse(window.sessionStorage.getItem("userInfo"));
|
|
|
this.$store.commit("update", ["userInfo", userInfo]);
|
|
|
+ this.$router.push("/eventCenter?steps=" + "2");
|
|
|
// if (this.$route.path == "/login") {
|
|
|
// if (userInfo.type == "1") {
|
|
|
- this.$router.push("/eventCenter?steps=" + "2");
|
|
|
+ // this.$router.push("/eventCenter?steps=" + "2");
|
|
|
// } else if (userInfo.type == "2" || userInfo.type == "4") {
|
|
|
// this.$router.push("/anliList");
|
|
|
// } else if (userInfo.type == "5" || userInfo.type == "6") {
|
|
@@ -164,23 +165,28 @@ export default {
|
|
|
this.isShowNav = true;
|
|
|
}
|
|
|
this.nav = navTabs;
|
|
|
- } else if (userInfo.type == 5 || userInfo.type == 6) {
|
|
|
+ } else if (
|
|
|
+ userInfo.type == 5 ||
|
|
|
+ userInfo.type == 6 ||
|
|
|
+ userInfo.type == 0
|
|
|
+ ) {
|
|
|
if (navTabs2.indexOf(router_path) != -1) {
|
|
|
a = 1;
|
|
|
this.isShowNav = true;
|
|
|
}
|
|
|
- this.nav = navTabs;
|
|
|
+ this.nav = navTabs2;
|
|
|
} else if (userInfo.type == 3) {
|
|
|
if (navTabs3.indexOf(router_path) != -1) {
|
|
|
a = 1;
|
|
|
this.isShowNav = true;
|
|
|
}
|
|
|
- this.nav = navTabs;
|
|
|
+ this.nav = navTabs3;
|
|
|
}
|
|
|
if (a == 0) {
|
|
|
this.nav = [];
|
|
|
this.isShowNav = false;
|
|
|
}
|
|
|
+ this.$forceUpdate();
|
|
|
},
|
|
|
exit() {
|
|
|
sessionStorage.clear();
|
|
@@ -204,7 +210,6 @@ export default {
|
|
|
const { userInfo } = this.$store.state;
|
|
|
const toPath = to.path;
|
|
|
const fromName = from.name;
|
|
|
-
|
|
|
var a = 0;
|
|
|
if (userInfo.type == 2 || userInfo.type == 4) {
|
|
|
if (navTabs.indexOf(toPath) != -1) {
|
|
@@ -212,7 +217,7 @@ export default {
|
|
|
this.isShowNav = true;
|
|
|
}
|
|
|
this.nav = navTabs;
|
|
|
- } else if (userInfo.type == 5 || userInfo.type == 6) {
|
|
|
+ } else if (userInfo.type == 5 || userInfo.type == 6 || userInfo.type == 0) {
|
|
|
if (navTabs2.indexOf(toPath) != -1) {
|
|
|
a = 1;
|
|
|
this.isShowNav = true;
|
|
@@ -229,6 +234,7 @@ export default {
|
|
|
this.nav = [];
|
|
|
this.isShowNav = false;
|
|
|
}
|
|
|
+ this.$forceUpdate();
|
|
|
},
|
|
|
},
|
|
|
created() {
|