zengyicheng 1 년 전
부모
커밋
93078dc8ea

+ 1 - 1
dist/index.html

@@ -24,4 +24,4 @@
             height: 100%;
             width: 100%;
             background: #e6eaf0;
-        }</style><link href=./static/css/app.f0b8bb83d0c14e0afe8834175b797e88.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.dca404bd3711c644c2ae.js></script><script type=text/javascript src=./static/js/app.a3e7a7729bbe562a0675.js></script></body></html><script>document.domain = document.domain.split(".").slice(-2).join(".");</script>
+        }</style><link href=./static/css/app.f1ed7ca6bd0608221f34ae4af2f2a079.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.dca404bd3711c644c2ae.js></script><script type=text/javascript src=./static/js/app.ed860fd0e8dbfc2ffde9.js></script></body></html><script>document.domain = document.domain.split(".").slice(-2).join(".");</script>

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/app.f0b8bb83d0c14e0afe8834175b797e88.css.map


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/app.f1ed7ca6bd0608221f34ae4af2f2a079.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/app.f1ed7ca6bd0608221f34ae4af2f2a079.css.map


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.a3e7a7729bbe562a0675.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.a3e7a7729bbe562a0675.js.map


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.ed860fd0e8dbfc2ffde9.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.ed860fd0e8dbfc2ffde9.js.map


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/manifest.3ad1d5771e9b13dbdad2.js.map


+ 13 - 7
src/App.vue

@@ -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() {

+ 21 - 3
src/components/login.vue

@@ -26,12 +26,13 @@ export default {
       this.ajax
         .post(this.$store.state.api + "loginNewEvenManage", params)
         .then((res) => {
-            var _this = this;
+          // let isU = res.data[0][0].type;
+          var _this = this;
+          // if (res.data.status == "1") {
             // _this.$message({
             //   message: "登录成功",
             //   type: "success",
             // });
-
             _this.userInfo = res.data[0][0];
             _this.$cookies.set("tlogin", "1", -1);
 
@@ -41,7 +42,23 @@ export default {
             // window.sessionStorage.setItem("userInfo", JSON.stringify(this.userInfo));
             _this.$store.commit("update", ["isLogin", true]);
             _this.$store.commit("update", ["userInfo", _this.userInfo]);
-            _this.$router.push("/eventCenter?steps=" + "1");
+            this.$router.push("/eventCenter?steps=" + "1");
+            // if (isU == 1) {
+            //   this.$router.push("/eventCenter?steps=" + "1");
+            // } else if (isU == 2 || isU == 4) {
+            //   //市级账号 munAdmin
+            //   this.$router.push("/score");
+            // } else if (isU == 5 || isU == 6) {
+            //   //区县账号 disAdmin
+            //   this.$router.push("/score1");
+            // } else if (isU == 3) {
+            //   //省级账号 proAdmin
+            //   this.$router.push("/anliList2");
+            // } else if (isU == 0) {
+            //   //admin账号
+            //   this.$router.push("/eventCenter?steps=" + "1");
+            // }
+            // _this.$router.push("/eventCenter?steps=" + "1");
             // if (res.data[0][0].type == 1 || res.data[0][0].type == 2) {
             //   this.$router.push("/eventCenter?steps=" + "1");
             // }
@@ -59,6 +76,7 @@ export default {
             //   this.$router.push("/eventCenter?steps=" + "1");
             // }
             // console.log(_this.$store.state);
+          // }
         })
         .catch((err) => {
           // this.$message.error("登录失败");

+ 3 - 4
src/components/pages/disAdmin/anliList.vue

@@ -615,7 +615,7 @@ export default {
     },
     selectType(rc) {
       this.ajax
-        .get(this.$store.state.api + "selectMatType")
+        .get(this.$store.state.api + "selectMatTypeYT")
         .then((res) => {
           this.CourseType = res.data;
           for (var i = 0; i < res.data[0].length; i++) {
@@ -1393,12 +1393,11 @@ export default {
 }
 
 .aName {
-  position: relative;
+  margin-left: 10px;
 }
 
 .aName >>> .el-input__inner {
-  width: 290px;
-  text-indent: 12px;
+  width: 300px;
 }
 
 .searchImg {

+ 1 - 1
src/components/pages/disAdmin/score.vue

@@ -616,7 +616,7 @@ export default {
     // },
     selectType(rc) {
       this.ajax
-        .get(this.$store.state.api + "selectMatType")
+        .get(this.$store.state.api + "selectMatTypeYT")
         .then((res) => {
           this.CourseType = res.data;
           for (var i = 0; i < res.data[0].length; i++) {

+ 1 - 1
src/components/pages/munAdmin/anliList.vue

@@ -609,7 +609,7 @@ export default {
     },
     selectType(rc) {
       this.ajax
-        .get(this.$store.state.api + "selectMatType")
+        .get(this.$store.state.api + "selectMatTypeYT")
         .then((res) => {
           this.CourseType = res.data;
           for (var i = 0; i < res.data[0].length; i++) {

+ 1 - 1
src/components/pages/munAdmin/score.vue

@@ -615,7 +615,7 @@ export default {
     // },
     selectType(rc) {
       this.ajax
-        .get(this.$store.state.api + "selectMatType")
+        .get(this.$store.state.api + "selectMatTypeYT")
         .then((res) => {
           this.CourseType = res.data;
           for (var i = 0; i < res.data[0].length; i++) {

+ 1 - 1
src/components/pages/proAdmin/anliList.vue

@@ -493,7 +493,7 @@ export default {
     },
     selectType(rc) {
       this.ajax
-        .get(this.$store.state.api + "selectMatType")
+        .get(this.$store.state.api + "selectMatTypeYT")
         .then((res) => {
           this.CourseType = res.data;
           for (var i = 0; i < res.data[0].length; i++) {

+ 25 - 5
src/components/pages/race/eventCenter.vue

@@ -14,11 +14,25 @@
     <div class="center_nav">
       <span @click="steps = 1" :class="{ active: steps == 1 }">活动信息</span>
       <span @click="steps = 2" :class="{ active: steps == 2 }">我的案例</span>
+      <el-button
+        v-if="tType == 0"
+        @click="
+          goTo('/score1?userid=' + userid + '&oid=' + oid + '&org=' + org)
+        "
+        type="primary"
+        >查看评分</el-button
+      >
       <!-- <span @click="steps = 3" :class="{ active: steps == 3 }">项目进度</span> -->
     </div>
-    <div :class="steps == 1 ? 'center_body' : 'center_body1'" >
+    <div :class="steps == 1 ? 'center_body' : 'center_body1'">
       <EventMessage v-if="steps == 1"></EventMessage>
-      <MyAnli :userid="userid" :oid="oid" :org="org" :type="tType" v-if="steps == 2"></MyAnli>
+      <MyAnli
+        :userid="userid"
+        :oid="oid"
+        :org="org"
+        :type="tType"
+        v-if="steps == 2"
+      ></MyAnli>
       <!-- <ProjectJd v-if="steps == 3"></ProjectJd> -->
     </div>
     <div class="center_btn" v-if="steps == 1">
@@ -99,6 +113,7 @@ export default {
   justify-content: center;
   width: 100%;
   margin: 20px auto 10px;
+  position: relative;
 }
 
 .center_nav span {
@@ -118,15 +133,20 @@ export default {
   color: #191919;
   border-bottom: 5px solid rgb(96 162 231);
 }
-
-.center_body,.center_body1 {
+.center_nav >>> .el-button {
+  position: absolute;
+  right: 30px;
+  top: 0;
+}
+.center_body,
+.center_body1 {
   display: flex;
   width: 100%;
   justify-content: center;
   margin: 0 auto;
   height: calc(100% - 268px);
 }
-.center_body1{
+.center_body1 {
   height: calc(100% - 200px);
 }
 .center_btn {

+ 1 - 1
src/components/tools/leftBar.vue

@@ -67,7 +67,7 @@
             <span>通知公告</span>
           </el-menu-item> -->
         </el-menu>
-        <el-menu :default-active="path" background-color="#fff" text-color="#777" active-text-color="#fff" router v-else-if="$store.state.userInfo.type == 5 || $store.state.userInfo.type == 6">
+        <el-menu :default-active="path" background-color="#fff" text-color="#777" active-text-color="#fff" router v-else-if="$store.state.userInfo.type == 5 || $store.state.userInfo.type == 6 || $store.state.userInfo.type == 0">
           <el-menu-item index="/score1" v-if="nav.indexOf('/score1') != -1">
             <div class="img" v-if="path == '/score1'">
               <img src="../../assets/icon/works-active.png" alt="" />

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.