zengyicheng 1 anno fa
parent
commit
02afab3516

+ 1 - 1
dist/index.html

@@ -24,4 +24,4 @@
             height: 100%;
             width: 100%;
             background: #e6eaf0;
-        }</style><link href=./static/css/app.2a98c0646abaaed8163331e3403a8467.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.804c3d7b9f5b3d49119e.js></script></body></html><script>document.domain = document.domain.split(".").slice(-2).join(".");</script>
+        }</style><link href=./static/css/app.8b919991c1703d725ffe35532998cf47.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.67f64e7ef47d68c5ff2e.js></script></body></html><script>document.domain = document.domain.split(".").slice(-2).join(".");</script>

File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.8b919991c1703d725ffe35532998cf47.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.8b919991c1703d725ffe35532998cf47.css.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.67f64e7ef47d68c5ff2e.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.67f64e7ef47d68c5ff2e.js.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.804c3d7b9f5b3d49119e.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.804c3d7b9f5b3d49119e.js.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/manifest.3ad1d5771e9b13dbdad2.js.map


+ 20 - 12
src/components/pages/disAdmin/score.vue

@@ -94,7 +94,7 @@
           :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
           :row-class-name="tableRowClassName"
         >
-          <el-table-column label="序号" min-width="10" align="center">
+          <el-table-column label="序号" min-width="5" align="center">
             <template slot-scope="scope">
               <div>
                 {{ (page - 1) * 10 + scope.$index + 1 }}
@@ -103,7 +103,7 @@
           </el-table-column>
           <el-table-column
             label="创建人"
-            min-width="10"
+            min-width="5"
             align="center"
             v-if="tType == 0"
           >
@@ -115,7 +115,7 @@
               </div>
             </template>
           </el-table-column>
-          <el-table-column label="项目案例" min-width="10" align="center">
+          <el-table-column label="项目案例" min-width="20" align="center">
             <template slot-scope="scope">
               <div>
                 {{ scope.row.info.title ? scope.row.info.title : "暂无名称" }}
@@ -231,7 +231,7 @@
               <div>{{ scope.row.scoreTime ? scope.row.scoreTime : "-" }}</div>
             </template>
           </el-table-column>
-          <el-table-column label="操作" min-width="20" v-if="tType == 2">
+          <el-table-column label="操作" min-width="20">
             <template slot-scope="scope">
               <div class="tableButton">
                 <div
@@ -255,6 +255,7 @@
                 </div>
                 <!-- <div @click="openScore(scope.row, 1)">立即评分</div> -->
                 <div
+                  v-if="tType == 2"
                   @click="
                     goTo(
                       '/anliDetail?aid=' +
@@ -422,10 +423,18 @@
 export default {
   data() {
     return {
-      userid: this.$route.query.userid,
-      oid: this.$route.query.oid,
-      org: this.$route.query.org,
-      tType: this.$route.query.type,
+      userid: this.$route.query.userid
+        ? this.$route.query.userid
+        : this.$cookies.get("teacherInfo").userid,
+      oid: this.$route.query.oid
+        ? this.$route.query.oid
+        : this.$cookies.get("teacherInfo").oid,
+      org: this.$route.query.org
+        ? this.$route.query.org
+        : this.$cookies.get("teacherInfo").org,
+      tType: this.$route.query.type
+        ? this.$route.query.type
+        : this.$cookies.get("teacherInfo").type,
       page: 1,
       total: 0,
       // anliType: "",
@@ -582,12 +591,11 @@ export default {
           // typeE.push(this.CourseType[0][i].id);
           typeE = [];
         } else if (this.courseTypeId[this.CourseType[0][i].id] != "") {
-          if (this.CourseType[0][i].name == "案例组别") {
+          typeE.push(this.CourseType[0][i].id);
+          if (this.CourseType[0][i].name == "类型") {
             typea = this.courseTypeId[this.CourseType[0][i].id];
-          } else if (this.CourseType[0][i].name == "年级") {
-            typeb = this.courseTypeId[this.CourseType[0][i].id];
           } else if (this.CourseType[0][i].name == "学科") {
-            typec = this.courseTypeId[this.CourseType[0][i].id];
+            typeb = this.courseTypeId[this.CourseType[0][i].id];
           }
           this.courseTypeSon.push(this.courseTypeId[this.CourseType[0][i].id]);
         }

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

@@ -77,7 +77,7 @@
             </div>
             <span>评审列表</span>
           </el-menu-item>
-          <el-menu-item index="/anliList1" v-if="nav.indexOf('/anliList1') != -1">
+          <!-- <el-menu-item index="/anliList1" v-if="nav.indexOf('/anliList1') != -1">
             <div class="img" v-if="path == '/anliList1'">
               <img src="../../assets/icon/course-active.svg" alt="" />
             </div>
@@ -85,7 +85,7 @@
               <img src="../../assets/icon/course.png" alt="" />
             </div>
             <span>案例管理</span>
-          </el-menu-item>
+          </el-menu-item> -->
           <el-menu-item index="/user1" v-if="nav.indexOf('/user1') != -1 && $store.state.userInfo.type == 5">
             <div class="img" v-if="path == '/user1'">
               <img src="../../assets/icon/user-active.png" alt="" />

Some files were not shown because too many files changed in this diff