zengyicheng 2 rokov pred
rodič
commit
f00df7f68a

+ 2 - 2
src/App.vue

@@ -46,8 +46,8 @@ export default {
   data() {
     return {
       isShowNav: false, // 是否显示导航 Tab
-      navTabs: ["/anliList", '/user', '/score', '/data', '/notice'], // 导航
-      navTabs2: ["/anliList", '/score', '/data', '/notice'], // 导航
+      navTabs: ["/anliList", '/user', '/score', '/data', '/notice','/school'], // 导航
+      navTabs2: ["/anliList", '/score', '/data', '/notice','/school'], // 导航
       nav: [],
     };
   },

+ 1 - 1
src/components/login.vue

@@ -309,7 +309,7 @@ export default {
               _this.$store.commit("update", ["userInfo", _this.userInfo]);
               if (isU == 1) {
                 this.$router.push("/eventCenter");
-              }else if(isU == 2 || isU == 3 || isU == 4){
+              }else if(isU == 2 || isU == 3 || isU == 4 || isU == 5 || isU == 6){
                 this.$router.push("/anliList");
               }
               // console.log(_this.$store.state);

+ 648 - 59
src/components/pages/munAdmin/anliList.vue

@@ -13,22 +13,38 @@
             <el-option value="0" label="所有分类"></el-option>
           </el-select>
         </div> -->
-        <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index">
-          <span>{{ item.name }}</span>
-          <el-select v-model="courseTypeId[item.id]" placeholder="请选择" @change="search">
-            <el-option label="全部" value="1">全部</el-option>
-            <el-option v-for="item1 in CourseTypeJson[item.id]" :key="item1.id" :label="item1.name" :value="item1.id">
-            </el-option>
-          </el-select>
-        </div>
         <div>
-          <div>案例筛选</div>
-          <el-select v-model="anliBox" clearable @change="search">
-            <el-option value="" label="全部"></el-option>
-            <el-option value="1" label="经典案例"></el-option>
-            <el-option value="0" label="平台案例"></el-option>
-          </el-select>
+          <div
+            class="all_choose"
+            v-for="(item, index) in CourseType[0]"
+            :key="index"
+          >
+            <span>{{ item.name }}</span>
+            <el-select
+              v-model="courseTypeId[item.id]"
+              placeholder="请选择"
+              @change="search"
+            >
+              <el-option label="全部" value="1">全部</el-option>
+              <el-option
+                v-for="item1 in CourseTypeJson[item.id]"
+                :key="item1.id"
+                :label="item1.name"
+                :value="item1.id"
+              >
+              </el-option>
+            </el-select>
+          </div>
+          <div class="anliCss">
+            <div>案例筛选</div>
+            <el-select v-model="anliBox" clearable @change="search">
+              <el-option value="" label="全部"></el-option>
+              <el-option value="1" label="经典案例"></el-option>
+              <el-option value="0" label="平台案例"></el-option>
+            </el-select>
+          </div>
         </div>
+        <div @click="clear" class="clear">重置</div>
       </div>
       <div class="touRight">
         <div></div>
@@ -47,46 +63,79 @@
           </div>
           <div class="anliButton">
             <div>
-              <el-button>查看</el-button>
+              <el-button @click="goTo('/anliDetail?aid=' + a.id + '&type=1')"
+                >查看</el-button
+              >
             </div>
             <div>
-              <el-button>评分</el-button>
+              <el-button @click="openScore(a, 1)">评分</el-button>
             </div>
             <div>
-              <el-button>推荐</el-button>
+              <el-button @click="openScore(a, 2)">推荐</el-button>
             </div>
           </div>
         </div>
       </div>
     </div>
     <div class="student_page">
-      <el-pagination background layout="prev, pager, next" :page-size="10" :total="total"
-        v-if="page && tableData.length" style="padding-bottom: 20px" @current-change="handleCurrentChange">
+      <el-pagination
+        background
+        layout="prev, pager, next"
+        :page-size="10"
+        :total="total"
+        v-if="page && tableData.length"
+        style="padding-bottom: 20px"
+        @current-change="handleCurrentChange"
+      >
       </el-pagination>
     </div>
-    <el-dialog title="分配案例" :visible.sync="dialogVisibleMember" :append-to-body="true" width="25%" height="80%"
-      :before-close="handleClose" class="dialog_diy1 customWidth">
+    <el-dialog
+      title="分配案例"
+      :visible.sync="dialogVisibleMember"
+      :append-to-body="true"
+      width="25%"
+      height="80%"
+      :before-close="handleClose"
+      class="dialog_diy1 customWidth"
+    >
       <div class="people">
         <div class="people_top">
           <div class="people_top_right">
             <div class="people_search">
               <div>选择评委</div>
               <el-select v-model="reviewer" placeholder="请选择评委">
-                <el-option v-for="item in reviewerBox" :key="item.id" :label="item.name" :value="item.id"></el-option>
+                <el-option
+                  v-for="item in reviewerBox"
+                  :key="item.userid"
+                  :label="item.name"
+                  :value="item.userid"
+                ></el-option>
               </el-select>
             </div>
           </div>
         </div>
-        <el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange"
-          style="padding: 15px 0 0 15px">全选</el-checkbox>
-        <el-checkbox-group v-model="checkboxList" class="people_name" v-if="anliBox1.length"
-          @change="handleCheckedAnliChange">
+        <el-checkbox
+          :indeterminate="isIndeterminate"
+          v-model="checkAll"
+          @change="handleCheckAllChange"
+          style="padding: 15px 0 0 15px"
+          >全选</el-checkbox
+        >
+        <el-checkbox-group
+          v-model="checkboxList"
+          class="people_name"
+          v-if="anliBox1.length"
+          @change="handleCheckedAnliChange"
+        >
           <el-checkbox v-for="item in anliBox1" :key="item.id" :label="item.id">
             <div class="t_j_box">
               <div>案例名称:</div>
-              <el-tooltip placement="top" :content="item.info.title ? item.info.title : '暂无姓名'">
+              <el-tooltip
+                placement="top"
+                :content="item.info.title ? item.info.title : '暂无姓名'"
+              >
                 <span>{{
-                item.info.title ? item.info.title : "暂无姓名"
+                  item.info.title ? item.info.title : "暂无姓名"
                 }}</span>
               </el-tooltip>
             </div>
@@ -96,9 +145,130 @@
       </div>
       <span slot="footer" class="dialog-footer">
         <el-button @click="dialogVisibleMember = false">取 消</el-button>
-        <el-button type="primary">确定</el-button>
+        <el-button type="primary" @click="addCase">确定</el-button>
       </span>
     </el-dialog>
+    <el-dialog
+      title="评分"
+      :visible.sync="dialogVisibleScore"
+      :append-to-body="true"
+      width="25%"
+      height="80%"
+      :before-close="handleClose"
+      class="dialog_diy customWidth1"
+    >
+      <div class="scoreBox" v-for="(s, sIndex) in scoreDetail" :key="sIndex">
+        <div class="scoreCss">
+          <div class="scoreTitle">
+            <div><img src="../../../assets/avatar.png" alt="" /></div>
+            <div>{{ s.uname }}</div>
+          </div>
+          <div class="anliTitle">
+            <div>案例名称</div>
+            <div>{{ s.title }}</div>
+          </div>
+          <div class="anliBrief">
+            <div>案例简介</div>
+            <div style="width: 650px; height: 150px; overflow: auto">
+              {{ s.detail }}
+            </div>
+          </div>
+          <div class="anliScore">
+            <div>请选择评分</div>
+            <div>
+              <div class="scoreDiv">
+                <div>评审维度1</div>
+                <div>
+                  <el-input
+                    placeholder="输入分数"
+                    v-model="s.scoreAll.first"
+                    @change="isNumber($event, 1)"
+                  ></el-input>
+                </div>
+              </div>
+              <div class="scoreDiv">
+                <div>评审维度2</div>
+                <div>
+                  <el-input
+                    placeholder="输入分数"
+                    v-model="s.scoreAll.second"
+                    @change="isNumber($event, 2)"
+                  ></el-input>
+                </div>
+              </div>
+              <div class="scoreDiv">
+                <div>评审维度3</div>
+                <div>
+                  <el-input
+                    placeholder="输入分数"
+                    v-model="s.scoreAll.third"
+                    @change="isNumber($event, 3)"
+                  ></el-input>
+                </div>
+              </div>
+              <div class="scoreDiv">
+                <div>评审维度4</div>
+                <div>
+                  <el-input
+                    placeholder="输入分数"
+                    v-model="s.scoreAll.fourth"
+                    @change="isNumber($event, 4)"
+                  ></el-input>
+                </div>
+              </div>
+              <div class="scoreDiv">
+                <div>评审维度5</div>
+                <div>
+                  <el-input
+                    placeholder="输入分数"
+                    v-model="s.scoreAll.fivth"
+                    @change="isNumber($event, 5)"
+                  ></el-input>
+                </div>
+              </div>
+            </div>
+          </div>
+          <div class="anliContent">
+            <textarea
+              :rows="5"
+              class="tAreaCss"
+              placeholder="还有要说的吗..."
+              v-model="s.scoreAll.content"
+            ></textarea>
+          </div>
+          <div class="addScore" @click="addScore">进行评分</div>
+        </div>
+      </div>
+    </el-dialog>
+    <el-dialog
+      title="推荐省级评奖"
+      :visible.sync="dialogVisibleRecommend"
+      :append-to-body="true"
+      width="25%"
+      height="80%"
+      :before-close="handleClose"
+      class="dialog_diy customWidth1"
+    >
+      <div v-for="(r, rIndex) in scoreDetail" :key="rIndex">
+        <div class="reTitle">
+          <div>案例名称</div>
+          <div>{{ r.title }}</div>
+        </div>
+        <div class="reDetail">
+          <div>案例简介</div>
+          <div>{{ r.detail }}</div>
+        </div>
+        <div class="reScore">
+          <div>当前得分</div>
+          <div><span>{{ r.sumScore }}</span>分</div>
+        </div>
+        <div class="reBottom">
+          <div>提示:点击确定提交,即可推送到省级进行评奖</div>
+          <div @click="dialogVisibleRecommend = false">取消</div>
+          <div @click="addRecommend">确定提交</div>
+        </div>
+      </div>
+    </el-dialog>
   </div>
 </template>
 
@@ -123,6 +293,25 @@ export default {
       isIndeterminate: false,
       checkAll: false,
       dialogVisibleMember: false,
+      dialogVisibleScore: false,
+      dialogVisibleRecommend: false,
+      scoreDetail: [
+        {
+          id: "",
+          uname: "",
+          title: "",
+          detail: "",
+          scoreAll: {
+            first: "",
+            second: "",
+            third: "",
+            fourth: "",
+            fivth: "",
+            content: "",
+          },
+          sumScore: 0,
+        },
+      ],
     };
   },
   methods: {
@@ -134,6 +323,44 @@ export default {
       this.page = 1;
       this.getAnliList();
     },
+    goTo(path) {
+      this.$router.push(path);
+    },
+    isNumber(e, t) {
+      if (e < 0) {
+        this.$message.error("请输入大于0的数值");
+        if (t == 1) {
+          this.scoreDetail[0].scoreAll.first = "";
+        } else if (t == 2) {
+          this.scoreDetail[0].scoreAll.second = "";
+        } else if (t == 3) {
+          this.scoreDetail[0].scoreAll.third = "";
+        } else if (t == 4) {
+          this.scoreDetail[0].scoreAll.fourth = "";
+        } else {
+          this.scoreDetail[0].scoreAll.fivth = "";
+        }
+        return;
+      } else if (e > 100) {
+        this.$message.error("数值不能大于100");
+        if (t == 1) {
+          this.scoreDetail[0].scoreAll.first = "";
+        } else if (t == 2) {
+          this.scoreDetail[0].scoreAll.second = "";
+        } else if (t == 3) {
+          this.scoreDetail[0].scoreAll.third = "";
+        } else if (t == 4) {
+          this.scoreDetail[0].scoreAll.fourth = "";
+        } else {
+          this.scoreDetail[0].scoreAll.fivth = "";
+        }
+        return;
+      }
+      let value = e.replace(/[^d]/g, ""); // 只能输入数字
+      value = value.replace(/^0+(d)/, "$1"); // 第一位0开头,0后面为数字,则过滤掉,取后面的数字
+      value = value.replace(/(d{15})d*/, "$1"); // 最多保留15位整数
+      // this.height = value;
+    },
     handleCheckAllChange(val) {
       if (this.checkboxIdList.length == 0) {
         for (var i = 0; i < this.anliBox1.length; i++) {
@@ -152,10 +379,17 @@ export default {
     handleClose(done) {
       done();
     },
-    getAnliList() {
+    clear() {
+      for (var i = 0; i < this.CourseType[0].length; i++) {
+        this.courseTypeId[this.CourseType[0][i].id] = "";
+      }
+      this.anliBox = "";
+      this.getAnliList();
+    },
+    getAnliList(rc) {
       var typeE = [];
       var typea, typeb, typec, typed;
-      this.tableData = []
+      this.tableData = [];
       for (var i = 0; i < this.CourseType[0].length; i++) {
         if (this.courseTypeId[this.CourseType[0][i].id] == "1") {
           typeE.push(this.CourseType[0][i].id);
@@ -166,10 +400,8 @@ export default {
             typeb = this.courseTypeId[this.CourseType[0][i].id];
           } else if (this.CourseType[0][i].name == "学科") {
             typec = this.courseTypeId[this.CourseType[0][i].id];
-          } 
-          this.courseTypeSon.push(
-            this.courseTypeId[this.CourseType[0][i].id]
-          );
+          }
+          this.courseTypeSon.push(this.courseTypeId[this.CourseType[0][i].id]);
         }
       }
       let params = {
@@ -178,6 +410,7 @@ export default {
         typec: typec != undefined ? typec : "",
         typed: typed != undefined ? typed : "",
         typeE: typeE.join(","),
+        cid: rc ? rc : "",
         cn: this.anliBox == "" ? 0 : this.anliBox,
         page: this.page,
       };
@@ -199,7 +432,7 @@ export default {
           console.error(err);
         });
     },
-    selectType() {
+    selectType(rc) {
       this.ajax
         .get(this.$store.state.api + "selectMatType")
         .then((res) => {
@@ -214,7 +447,7 @@ export default {
               }
             }
           }
-          this.getAnliList()
+          this.getAnliList(rc);
         })
         .catch((err) => {
           console.error(err);
@@ -235,6 +468,29 @@ export default {
           console.error(err);
         });
     },
+    getReviewerOrAdmin() {
+      if (this.$store.state.userInfo.type == 4) {
+        this.getUser();
+      } else {
+        this.selectType();
+      }
+    },
+    getUser() {
+      let params = {
+        uid: this.$store.state.userInfo.userid,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectCaseUser", params)
+        .then((res) => {
+          if (res.data[0].length > 0) {
+            var reCid = res.data[0][0].aBox;
+            this.selectType(reCid);
+          }
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
     getAnliBox() {
       this.ajax
         .get(this.$store.state.api + "selecAnliBox")
@@ -253,11 +509,164 @@ export default {
           console.error(err);
         });
     },
+    addCase() {
+      if (this.reviewer == "") {
+        this.$message.error("请选择评审员");
+        return;
+      } else if (this.checkboxList.length == 0) {
+        this.$message.error("请选择案例");
+        return;
+      }
+      let params = [
+        {
+          uid: this.reviewer,
+          box: this.checkboxList.join(","),
+        },
+      ];
+      this.ajax
+        .post(this.$store.state.api + "insertCase", params)
+        .then((res) => {
+          this.$message({
+            message: "分配成功",
+            type: "success",
+          });
+          this.reviewer = "";
+          this.checkboxList = [];
+          this.isIndeterminate = false;
+          this.checkAll = false;
+          this.dialogVisibleMember = false;
+        })
+        .catch((err) => {
+          this.$message.error("网络不佳");
+          console.error(err);
+        });
+    },
+    openScore(a, t) {
+      this.scoreDetail[0].id = a.id;
+      this.scoreDetail[0].title = a.info.title;
+      this.scoreDetail[0].detail = a.info.courseText;
+      this.scoreDetail[0].uname = a.uname;
+      this.getScore(a.id, t);
+    },
+    getScore(id, t) {
+      let params = {
+        rid: id,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectScore", params)
+        .then((res) => {
+          if (res.data[0].length > 0) {
+            this.scoreDetail[0].scoreAll = JSON.parse(res.data[0][0].score);
+            var a = parseInt(this.scoreDetail[0].scoreAll.first);
+            var b = parseInt(this.scoreDetail[0].scoreAll.second);
+            var c = parseInt(this.scoreDetail[0].scoreAll.third);
+            var d = parseInt(this.scoreDetail[0].scoreAll.fourth);
+            var e = parseInt(this.scoreDetail[0].scoreAll.fivth);
+            this.scoreDetail[0].sumScore = Math.round((a + b + c + d + e) / 5);
+          } else {
+            this.scoreDetail[0].scoreAll = {
+              first: "",
+              second: "",
+              third: "",
+              fourth: "",
+              fivth: "",
+              content: "",
+            };
+            this.scoreDetail[0].sumScore = 0;
+          }
+          if (t == 1) {
+            this.dialogVisibleScore = true;
+          } else {
+            this.dialogVisibleRecommend = true;
+          }
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    addScore() {
+      if (this.scoreDetail[0].scoreAll.first == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      } else if (this.scoreDetail[0].scoreAll.second == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      } else if (this.scoreDetail[0].scoreAll.third == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      } else if (this.scoreDetail[0].scoreAll.fourth == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      } else if (this.scoreDetail[0].scoreAll.fivth == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      } else if (this.scoreDetail[0].scoreAll.content == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      }
+      let params = {
+        rid: this.scoreDetail[0].id,
+        suser: this.$store.state.userInfo.userid,
+        s: JSON.stringify(this.scoreDetail[0].scoreAll),
+      };
+      this.ajax
+        .get(this.$store.state.api + "addScore", params)
+        .then((res) => {
+          this.$message({
+            message: "评分成功",
+            type: "success",
+          });
+          this.scoreDetail = [
+            {
+              id: "",
+              uname: "",
+              title: "",
+              detail: "",
+              scoreAll: {
+                first: "",
+                second: "",
+                third: "",
+                fourth: "",
+                fivth: "",
+                content: "",
+              },
+              sumScore: 0,
+            },
+          ];
+          this.dialogVisibleScore = false;
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    addRecommend() {
+      if(this.scoreDetail[0].sumScore == 0){
+        this.$message.error("还未评审,不可推荐");
+        return;
+      }
+      let params = {
+        id: this.scoreDetail[0].id,
+        rec: 2,
+      };
+      this.ajax
+        .get(this.$store.state.api + "updateRaceRec", params)
+        .then((res) => {
+          this.$message({
+            message: "推荐成功",
+            type: "success",
+          });
+          this.dialogVisibleRecommend = false;
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
   },
   created() {
     // this.getAnliList();
     this.getAdmin();
-    this.selectType();
+    // this.selectType();
+    this.getReviewerOrAdmin();
     this.getAnliBox();
   },
 };
@@ -271,34 +680,42 @@ export default {
 </style>
 
 <style scoped>
-.dialog_diy1>>>.el-dialog__header {
+.dialog_diy1 >>> .el-dialog__header,
+.dialog_diy >>> .el-dialog__header {
   background: #3d67bd !important;
   padding: 15px 20px;
+}
+.dialog_diy1 >>> .el-dialog__header {
   text-align: center;
 }
-
-.dialog_diy1>>>.el-dialog__title {
+.dialog_diy1 >>> .el-dialog__title,
+.dialog_diy >>> .el-dialog__title {
   color: #fff;
 }
 
-.dialog_diy1>>>.el-dialog__headerbtn {
+.dialog_diy1 >>> .el-dialog__headerbtn,
+.dialog_diy >>> .el-dialog__headerbtn {
   top: 19px;
 }
 
-.dialog_diy1>>>.el-dialog__headerbtn .el-dialog__close {
+.dialog_diy1 >>> .el-dialog__headerbtn .el-dialog__close,
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
   color: #fff;
 }
 
-.dialog_diy1>>>.el-dialog__headerbtn .el-dialog__close:hover {
+.dialog_diy1 >>> .el-dialog__headerbtn .el-dialog__close:hover,
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
   color: #fff;
 }
 
-.dialog_diy1>>>.el-dialog__body,
-.dialog_diy1>>>.el-dialog__footer {
+.dialog_diy1 >>> .el-dialog__body,
+.dialog_diy1 >>> .el-dialog__footer,
+.dialog_diy >>> .el-dialog__body,
+.dialog_diy >>> .el-dialog__footer {
   background: #fafafa;
 }
 
-.disUoloadSty>>>.el-upload--picture-card {
+.disUoloadSty >>> .el-upload--picture-card {
   display: none;
   /* 上传按钮隐藏 */
 }
@@ -326,18 +743,18 @@ export default {
   align-items: center;
 }
 
-.touLeft>div {
+.touLeft > div:nth-child(1) {
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
   align-items: center;
 }
 
-.touLeft>div>div {
+.touLeft > div > div {
   margin-right: 10px;
 }
 
-.touRight>div:nth-child(2)>.el-button {
+.touRight > div:nth-child(2) > .el-button {
   background: #2268bd;
   color: #fff;
 }
@@ -368,7 +785,7 @@ export default {
   height: 170px;
 }
 
-.anliImg>img {
+.anliImg > img {
   width: 100%;
   height: 100%;
 }
@@ -385,7 +802,7 @@ export default {
   box-sizing: border-box;
 }
 
-.detailBox>div:nth-child(1) {
+.detailBox > div:nth-child(1) {
   font-size: 20px;
   width: 250px;
   white-space: nowrap;
@@ -394,7 +811,7 @@ export default {
   word-break: break-word;
 }
 
-.detailBox>div:nth-child(2) {
+.detailBox > div:nth-child(2) {
   color: #999;
   margin-top: 5px;
   font-size: 14px;
@@ -409,20 +826,23 @@ export default {
   padding: 10px 0 0 0;
 }
 
-.anliButton>div {
+.anliButton > div {
   margin-right: 5px;
 }
 
-.anliButton>div>.el-button {
+.anliButton > div > .el-button {
   background: #409efe;
   color: #fff;
   width: 80px;
   border-radius: 5px;
 }
 
-.customWidth>>>.el-dialog {
+.customWidth >>> .el-dialog {
   min-width: 500px !important;
 }
+.customWidth1 >>> .el-dialog {
+  min-width: 800px !important;
+}
 
 .people {
   border: 1px solid rgb(229 229 229);
@@ -475,7 +895,7 @@ export default {
   align-items: center;
 }
 
-.people_search>div:nth-child(1) {
+.people_search > div:nth-child(1) {
   font-size: 20px;
   margin-right: 10px;
 }
@@ -493,7 +913,7 @@ export default {
 }
 
 .t_j_box span:nth-child(2) {
-  width: 30%;
+  width: 300px;
   overflow: hidden;
   text-overflow: ellipsis;
   margin-right: 10px;
@@ -513,7 +933,176 @@ export default {
   padding: 15px 0 0 15px;
 }
 
-.people_name>>>.el-checkbox {
+.people_name >>> .el-checkbox {
   margin-bottom: 10px;
 }
+.all_choose > span {
+  margin-right: 10px;
+}
+.clear {
+  width: 70px;
+  height: 35px;
+  background: #2268bc;
+  color: #fff;
+  text-align: center;
+  border-radius: 5px;
+  line-height: 35px;
+  cursor: pointer;
+}
+.anliCss {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+}
+.anliCss > div:nth-child(1) {
+  margin-right: 10px;
+}
+.scoreBox {
+  background: #fff;
+}
+.scoreCss {
+  padding: 10px;
+}
+.scoreTitle {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+}
+.scoreTitle > div:nth-child(1) {
+  width: 50px;
+}
+.scoreTitle > div:nth-child(1) > img {
+  width: 100%;
+  height: 100%;
+}
+.scoreTitle > div:nth-child(2) {
+  margin-left: 15px;
+}
+.anliTitle,
+.anliBrief,
+.anliScore {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: flex-start;
+  padding: 10px 0 10px 0;
+  font-size: 18px;
+}
+.anliTitle > div:nth-child(2),
+.anliBrief > div:nth-child(2) {
+  font-size: 17px;
+  margin-left: 10px;
+  color: #b0b0b0;
+}
+.anliScore > div:nth-child(2) {
+  margin: -13px 0 0 20px;
+}
+.scoreDiv {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+  padding: 10px 0;
+}
+.scoreDiv > div:nth-child(2) {
+  margin-left: 10px;
+}
+.scoreDiv > div:nth-child(2) >>> .el-input__inner {
+  border-radius: 15px;
+  background: #fafafa;
+  height: 30px;
+}
+.anliContent {
+  width: 80%;
+  margin: 0 auto;
+  border-top: 2px solid #ededed;
+  padding: 10px 0 0 0;
+}
+.tAreaCss {
+  resize: none;
+  width: 100%;
+  text-indent: 10px;
+  border: 1px solid #e6e6e8;
+  background: #fafafa;
+}
+.tAreaCss:focus-visible {
+  outline: none !important;
+}
+.addScore {
+  width: 75%;
+  margin: 10px auto;
+  background: #409efe;
+  color: #fff;
+  height: 35px;
+  text-align: center;
+  line-height: 35px;
+  border-radius: 5px;
+  cursor: pointer;
+}
+.reTitle {
+  font-size: 18px;
+}
+.reTitle > div:nth-child(2) {
+  width: 60%;
+  border: 1px solid #dbdbdb;
+  font-size: 16px;
+  height: 35px;
+  line-height: 35px;
+  text-indent: 10px;
+  border-radius: 5px;
+  margin: 10px 0;
+}
+.reDetail,
+.reScore {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: flex-start;
+  padding: 10px 0 10px 0;
+  font-size: 18px;
+}
+.reDetail > div:nth-child(2) {
+  font-size: 17px;
+  margin-left: 10px;
+  color: #b0b0b0;
+  width: 650px;
+  height: 150px;
+  overflow: auto;
+}
+.reScore > div:nth-child(2) {
+  font-size: 35px;
+  margin-left: 20px;
+}
+.reScore > div:nth-child(2) > span {
+  color: #6188d5;
+}
+.reBottom {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+  justify-content: flex-end;
+}
+.reBottom > div:nth-child(2) {
+  border: 1px solid #d7d7d9;
+  width: 70px;
+  height: 35px;
+  text-align: center;
+  line-height: 35px;
+  border-radius: 5px;
+  margin: 0 10px 0 20px;
+  cursor: pointer;
+}
+.reBottom > div:nth-child(3) {
+  background: #409efe;
+  color: #fff;
+  height: 35px;
+  line-height: 35px;
+  width: 85px;
+  text-align: center;
+  border-radius: 5px;
+  cursor: pointer;
+}
 </style>

+ 574 - 0
src/components/pages/munAdmin/school.vue

@@ -0,0 +1,574 @@
+<template>
+  <div class="pb_content">
+    <div class="pb_head">
+      <div>
+        <span>学校管理</span>
+      </div>
+    </div>
+    <div class="touTop">
+      <div class="touLeft">
+        <div>
+          <el-input v-model="suser" placeholder="请输入手机号或用户名">
+          </el-input>
+          <el-button @click="search">查询</el-button>
+        </div>
+      </div>
+      <div class="touRight">
+        <div></div>
+        <div>
+          <el-button @click="addUser">添加账号</el-button>
+        </div>
+      </div>
+    </div>
+    <div class="pb_content_body" style="margin: 0 auto">
+      <div class="student_table">
+        <el-table
+          ref="table"
+          :data="tableData"
+          border
+          :height="tableHeight"
+          :fit="true"
+          v-loading="isLoading"
+          style="width: 100%"
+          :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
+          :row-class-name="tableRowClassName"
+        >
+          <el-table-column label="姓名" min-width="10" align="center">
+            <template slot-scope="scope">
+              <div class="userImg">
+                <div>
+                  {{ scope.row.name }}
+                </div>
+              </div>
+            </template>
+          </el-table-column>
+          <el-table-column label="电话" min-width="10" align="center">
+            <template slot-scope="scope">
+              <div>{{ scope.row.phone ? scope.row.phone : "" }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column
+            prop="level"
+            label="权限等级"
+            min-width="10"
+            align="center"
+            ><template slot-scope="scope">
+              <div>{{ scope.row.schoolName }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="操作" min-width="20">
+            <template slot-scope="scope">
+              <div class="tableButton">
+                <el-button @click="upUser(scope.row)">修改</el-button>
+                <el-button @click="deUser(scope.row.userid)">删除</el-button>
+              </div>
+            </template>
+          </el-table-column>
+        </el-table>
+      </div>
+      <div class="student_page">
+        <el-pagination
+          background
+          layout="prev, pager, next"
+          :page-size="10"
+          :total="total"
+          v-if="page"
+          @current-change="handleCurrentChange"
+        ></el-pagination>
+      </div>
+    </div>
+    <el-dialog
+      title="添加管理员"
+      :visible.sync="dialogVisible"
+      :append-to-body="true"
+      width="500px"
+      :before-close="handleClose"
+      class="dialog_diy"
+    >
+      <el-form class="inputClass">
+        <el-form-item label="名称" :label-width="formLabelWidth">
+          <span>
+            <el-input
+              placeholder="请输入名称"
+              clearable
+              v-model="sName"
+              class="add_input"
+            ></el-input>
+          </span>
+        </el-form-item>
+        <el-form-item label="手机号" :label-width="formLabelWidth">
+          <span>
+            <el-input
+              placeholder="请输入手机号"
+              clearable
+              v-model="sPhone"
+              class="add_input"
+            ></el-input>
+          </span>
+        </el-form-item>
+        <el-form-item label="学校选择" :label-width="formLabelWidth">
+          <el-select v-model="sSchool" filterable clearable @clear="clearSchoolList" :allow-create="false"
+                @focus="remoteMethodclick" remote placeholder="请输入学校" :remote-method="remoteMethod" :loading="loading"
+                no-data-text="暂未查询到此学校">
+                <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
+                </el-option>
+              </el-select>
+        </el-form-item>
+        <div style="text-align: center; color: #adb3b7">
+          注:添加账号账号密码为123456
+        </div>
+      </el-form>
+      <span slot="footer" class="dialog-footer flex">
+        <el-button class="left" @click="dialogVisible = false">取消</el-button>
+        <el-button class="right" @click="addRaceUser" v-if="isAddOrUp == false"
+          >确认</el-button
+        >
+        <el-button
+          class="right"
+          @click="updateRaceUser"
+          v-if="isAddOrUp == true"
+          >修改</el-button
+        >
+      </span>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+export default {
+  data() {
+    return {
+      suser: "",
+      tableData: [],
+      tableHeight: "500px",
+      isLoading: false,
+      formLabelWidth: "100px",
+      page: 1,
+      total: 0,
+      dialogVisible: false,
+      isAddOrUp: false,
+      sName: "",
+      sPhone: "",
+      sType: "",
+      upId: "",
+      sSchool: "",
+      anliBox: [],
+      checkboxList: [],
+      checkboxIdList: [],
+      schoolList: [],
+      isIndeterminate: false,
+      checkAll: false,
+      options: [],
+      list: [],
+      loading: false,
+    };
+  },
+  mounted() {
+    this.$nextTick(function () {
+      this.tableHeight =
+        window.innerHeight - this.$refs.table.$el.offsetTop - 200;
+      if (this.tableHeight <= 530) {
+        this.tableHeight = 530;
+      }
+      // 监听窗口大小变化
+      let self = this;
+      window.onresize = function () {
+        self.tableHeight =
+          window.innerHeight - self.$refs.table.$el.offsetTop - 200;
+        if (self.tableHeight <= 530) {
+          self.tableHeight = 530;
+        }
+      };
+    });
+  },
+  methods: {
+    tableRowClassName({ row, rowIndex }) {
+      if ((rowIndex + 1) % 2 === 0) {
+        return "even_row";
+      } else {
+        return "";
+      }
+    },
+    remoteMethodclick() {
+      if (!this.options.length) {
+        var _option = []
+        for (var i = 0; i < 10; i++) {
+          var _a = this.randomNum(0, 10);
+          _option.push(this.list[_a])
+        }
+        this.options = _option
+      }
+    },
+    remoteMethod(query) {
+      if (query !== "") {
+        this.loading = true;
+        setTimeout(() => {
+          this.loading = false;
+          this.options = this.list.filter((item) => {
+            return item.label.toLowerCase().indexOf(query.toLowerCase()) > -1;
+          });
+        }, 200);
+      } else {
+        // this.options = [];
+        var _option = []
+        for (var i = 0; i < 10; i++) {
+          var _a = this.randomNum(0, 10);
+          _option.push(this.list[_a])
+        }
+        this.options = _option
+      }
+    },
+    handleCheckAllChange(val) {
+      if (this.checkboxIdList.length == 0) {
+        for (var i = 0; i < this.anliBox.length; i++) {
+          this.checkboxIdList.push(this.anliBox[i].id);
+        }
+      }
+      this.checkboxList = val ? this.checkboxIdList : [];
+      this.isIndeterminate = false;
+    },
+    handleCheckedAnliChange(value) {
+      let checkedCount = this.checkboxList.length;
+      this.checkAll = checkedCount === this.anliBox.length;
+      this.isIndeterminate =
+        checkedCount > 0 && checkedCount < this.anliBox.length;
+    },
+    handleClose(done) {
+      done();
+    },
+    handleCurrentChange(val) {
+      this.page = val;
+      this.getAdmin();
+    },
+    clearSchoolList() {
+      this.sSchool = ""
+    },
+    search() {
+      this.page = 1;
+      this.getAdmin();
+    },
+    addUser() {
+      this.sName = "";
+      this.sPhone = "";
+      this.sSchool = "";
+      this.isAddOrUp = false;
+      this.dialogVisible = true;
+    },
+    addRaceUser() {
+      if (this.sName == "") {
+        this.$message.error("请输入名称");
+        return;
+      } else if (this.sPhone == "") {
+        this.$message.error("请输入手机号");
+        return;
+      } else if (
+        this.sId != "" &&
+        !/^[1][3,4,5,7,8][0-9]{9}$/.test(this.sPhone)
+      ) {
+        this.$message.error("手机号格式不正确");
+        return;
+      } else if (this.sSchool == "") {
+        this.$message.error("请选择学校");
+        return;
+      }
+      this.isloading = true;
+      let params = [
+        {
+          reg: "",
+          res: "",
+          sch: this.sSchool,
+          n: this.sName,
+          p: this.sPhone,
+          t: 4,
+          parent: this.$store.state.userInfo.userid,
+        },
+      ];
+      this.ajax
+        .post(this.$store.state.api + "addRaceUser", params)
+        .then((res) => {
+          this.$message({
+            message: "创建成功",
+            type: "success",
+          });
+          this.isloading = false;
+          this.sName = "";
+          this.sPhone = "";
+          this.sType = "";
+          this.dialogVisible = false;
+          this.getAdmin();
+        })
+        .catch((err) => {
+          this.isloading = false;
+          this.$message.error("创建失败");
+          console.error(err);
+        });
+    },
+    upUser(r) {
+      this.sName = r.name;
+      this.sPhone = r.phone;
+      this.sSchool = r.schoolName;
+      this.upId = r.userid;
+      this.isAddOrUp = true;
+      this.dialogVisible = true;
+    },
+    updateRaceUser() {
+      let params = {
+        n: this.sName,
+        p: this.sPhone,
+        t: 4,
+        s:this.sSchool,
+        uid: this.upId,
+      };
+      this.ajax
+        .get(this.$store.state.api + "updateReviewer", params)
+        .then((res) => {
+          this.$message({
+            message: "修改成功",
+            type: "success",
+          });
+          this.sName = "";
+          this.sPhone = "";
+          this.sType = "";
+          this.upId = "";
+          this.isAddOrUp = false;
+          this.dialogVisible = false;
+          this.getAdmin();
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    deUser(id) {
+      let params = {
+        uid: id,
+      };
+      this.ajax
+        .get(this.$store.state.api + "deleteReviewer", params)
+        .then((res) => {
+          this.$message({
+            message: "删除成功",
+            type: "success",
+          });
+          this.dialogVisible = false;
+          this.getAdmin();
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    getAnliBox() {
+      this.ajax
+        .get(this.$store.state.api + "selecAnliBox")
+        .then((res) => {
+          this.anliBox = res.data[0];
+          for (var i = 0; i < this.anliBox.length; i++) {
+            this.anliBox[i].info = JSON.parse(this.anliBox[i].info);
+            this.anliBox[i].overview = JSON.parse(this.anliBox[i].overview);
+            this.anliBox[i].process = JSON.parse(this.anliBox[i].process);
+            this.anliBox[i].proact = JSON.parse(this.anliBox[i].proact);
+            this.anliBox[i].proexc = JSON.parse(this.anliBox[i].proexc);
+            this.anliBox[i].results = JSON.parse(this.anliBox[i].results);
+          }
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    getAdmin() {
+      let params = {
+        uid: this.$store.state.userInfo.userid,
+        cn: this.suser,
+        page: this.page,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectReviewer", params)
+        .then((res) => {
+          this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
+          this.tableData = res.data[0];
+          this.reviewerBox = res.data[0];
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    getSchool() {
+      this.isloading = true;
+      let params = {
+        n: "",
+      };
+      this.ajax
+        .get(this.$store.state.api + "getSchool", params)
+        .then((res) => {
+          this.schoolList = res.data[0];
+          this.list = this.schoolList.map((item) => {
+            return { value: item.id, label: item.name };
+          });
+          var _option = []
+          for (var i = 0; i < 10; i++) {
+            var _a = this.randomNum(0, this.list.length);
+            _option.push(this.list[_a])
+          }
+          this.options = _option
+          this.isloading = false;
+        })
+        .catch((err) => {
+          this.isloading = false;
+          console.error(err);
+        });
+    },
+  },
+  created() {
+    this.getAdmin();
+    this.getSchool();
+    this.getAnliBox();
+  },
+};
+</script>
+
+<style scoped>
+.dialog_diy >>> .el-dialog__header,
+.dialog_diy1 >>> .el-dialog__header {
+  background: #3d67bd !important;
+  padding: 15px 20px;
+}
+.dialog_diy1 >>> .el-dialog__header {
+  text-align: center;
+}
+.dialog_diy >>> .el-dialog__title,
+.dialog_diy1 >>> .el-dialog__title {
+  color: #fff;
+}
+
+.dialog_diy >>> .el-dialog__headerbtn,
+.dialog_diy1 >>> .el-dialog__headerbtn {
+  top: 19px;
+}
+
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close,
+.dialog_diy1 >>> .el-dialog__headerbtn .el-dialog__close {
+  color: #fff;
+}
+
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover,
+.dialog_diy1 >>> .el-dialog__headerbtn .el-dialog__close:hover {
+  color: #fff;
+}
+
+.dialog_diy >>> .el-dialog__body,
+.dialog_diy >>> .el-dialog__footer,
+.dialog_diy1 >>> .el-dialog__body,
+.dialog_diy1 >>> .el-dialog__footer {
+  background: #fafafa;
+}
+/* .inputClass.is-active >>> .el-input__inner,
+.inputClass >>> .el-input__inner:focus {
+  border-color: #5c549f;
+}
+
+.inputClass >>> .el-select .el-input.is-focus .el-input__inner {
+  border-color: #5c549f;
+}
+.inputClass >>> .el-select .el-input__inner:focus {
+  border-color: #5c549f;
+} */
+.left {
+  background: #fff !important;
+  color: #000 !important;
+}
+.right,
+.left {
+  width: 80px;
+  color: #fff;
+  background: #409efe;
+  margin-bottom: 20px;
+}
+.touTop {
+  margin: 15px auto;
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+  justify-content: space-between;
+  width: 95%;
+}
+
+.touLeft {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+}
+
+.touLeft > div {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+}
+
+.touLeft > div > .el-button {
+  background: #2268bd;
+  color: #fff;
+  margin-left: 10px;
+}
+
+.touRight > div:nth-child(2) > .el-button {
+  background: #2268bd;
+  color: #fff;
+}
+.student_table >>> .el-table--border td {
+  border-right: 0px !important;
+}
+.student_table >>> .el-table,
+.student_table >>> .el-table__body-wrapper {
+  height: auto !important;
+}
+.student_page {
+  margin-top: 10px;
+}
+.tableButton {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+}
+.tableButton > .el-button {
+  background: #409efe;
+  color: #fff;
+  cursor: pointer;
+}
+.customWidth >>> .el-dialog {
+  min-width: 500px !important;
+}
+.t_j_box {
+  display: flex;
+}
+.t_j_box span:nth-child(1) {
+  width: 15%;
+  overflow: hidden;
+  margin-right: 10px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+.t_j_box span:nth-child(2) {
+  width: 300px;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  margin-right: 10px;
+}
+.t_j_box span:nth-child(3) {
+  width: calc(55% - 20px);
+  overflow: hidden;
+  text-overflow: ellipsis;
+}
+.people_name {
+  display: flex;
+  flex-direction: column;
+  flex-wrap: wrap;
+  align-items: flex-start;
+  padding: 15px 0 0 15px;
+}
+.people_name >>> .el-checkbox {
+  margin-bottom: 10px;
+}
+</style>

+ 1210 - 13
src/components/pages/munAdmin/score.vue

@@ -1,20 +1,1217 @@
 <template>
-      <div class="pb_content">
+  <div class="pb_content">
     <div class="pb_head">
       <div>
         <span>评分管理</span>
       </div>
     </div>
-      
+    <div class="touTop">
+      <div class="touLeft">
+        <!-- <div>
+          <div>案例分类</div>
+          <el-select v-model="anliType" clearable>
+            <el-option value="0" label="所有分类"></el-option>
+          </el-select>
+        </div> -->
+        <div>
+          <div
+            class="all_choose"
+            v-for="(item, index) in CourseType[0]"
+            :key="index"
+          >
+            <span>{{ item.name }}</span>
+            <el-select
+              v-model="courseTypeId[item.id]"
+              placeholder="请选择"
+              @change="search"
+            >
+              <el-option label="全部" value="1">全部</el-option>
+              <el-option
+                v-for="item1 in CourseTypeJson[item.id]"
+                :key="item1.id"
+                :label="item1.name"
+                :value="item1.id"
+              >
+              </el-option>
+            </el-select>
+          </div>
+          <div class="anliCss">
+            <div>案例筛选</div>
+            <el-select v-model="anliBox" clearable @change="search">
+              <el-option value="" label="全部"></el-option>
+              <el-option value="1" label="经典案例"></el-option>
+              <el-option value="0" label="平台案例"></el-option>
+            </el-select>
+          </div>
+        </div>
+        <div @click="clear" class="clear">重置</div>
+      </div>
     </div>
-  </template>
-  
-  <script>
-  export default {
-  
-  }
-  </script>
-  
-  <style scoped>
-  
-  </style>
+    <div class="pb_content_body" style="margin: 0 auto">
+      <div class="student_table">
+        <el-table
+          ref="table"
+          :data="tableData"
+          border
+          :height="tableHeight"
+          :fit="true"
+          v-loading="isLoading"
+          style="width: 100%"
+          :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
+          :row-class-name="tableRowClassName"
+        >
+          <el-table-column label="创建人" min-width="10" align="center">
+            <template slot-scope="scope">
+              <div class="userImg">
+                <div>
+                  {{ scope.row.uname }}
+                </div>
+              </div>
+            </template>
+          </el-table-column>
+          <el-table-column label="项目案例" min-width="10" align="center">
+            <template slot-scope="scope">
+              <div>{{ scope.row.info.title }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="评委" min-width="10" align="center">
+            <template slot-scope="scope">
+              <div>{{ scope.row.scoreName ? scope.row.scoreName : '-' }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="评分结果" min-width="10" align="center">
+            <template slot-scope="scope">
+              <div>{{ scope.row.sum ? scope.row.sum : '-' }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="评分结果" min-width="10" align="center">
+            <template slot-scope="scope">
+              <div>{{ scope.row.sum ? scope.row.sum : '-' }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="省级评奖" min-width="10" align="center">
+            <template slot-scope="scope">
+              <div>{{ scope.row.award == 1 ? '特等奖' : scope.row.award == 2 ? '一等奖' : scope.row.award == 3 ? '二等奖' : scope.row.award == 4 ? '三等奖' : scope.row.award == 5 ? '四等奖' : '-' }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="时间" min-width="10" align="center">
+            <template slot-scope="scope">
+              <div>{{ scope.row.scoreTime ? scope.row.scoreTime : '-' }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="操作" min-width="20">
+            <template slot-scope="scope">
+              <div class="tableButton">
+                <el-button @click="upUser(scope.row)">修改</el-button>
+                <el-button @click="deUser(scope.row.userid)">删除</el-button>
+              </div>
+            </template>
+          </el-table-column>
+        </el-table>
+      </div>
+      <div class="student_page">
+        <el-pagination
+          background
+          layout="prev, pager, next"
+          :page-size="10"
+          :total="total"
+          v-if="page && tableData.length"
+          style="padding-bottom: 20px"
+          @current-change="handleCurrentChange"
+        >
+        </el-pagination>
+      </div>
+    </div>
+    <!-- <div class="anliBox">
+      <div v-for="(a, aIndex) in tableData" :key="aIndex" class="anLi">
+        <div class="anliImg"><img :src="a.info.cover[0].url" alt="" /></div>
+        <div class="anliBot">
+          <div class="detailBox">
+            <div>{{ a.info.title }}</div>
+            <div>{{ a.time }}</div>
+          </div>
+          <div class="anliButton">
+            <div>
+              <el-button @click="goTo('/anliDetail?aid=' + a.id + '&type=1')"
+                >查看</el-button
+              >
+            </div>
+            <div>
+              <el-button @click="openScore(a, 1)">评分</el-button>
+            </div>
+            <div>
+              <el-button @click="openScore(a, 2)">推荐</el-button>
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="student_page">
+      <el-pagination
+        background
+        layout="prev, pager, next"
+        :page-size="10"
+        :total="total"
+        v-if="page && tableData.length"
+        style="padding-bottom: 20px"
+        @current-change="handleCurrentChange"
+      >
+      </el-pagination>
+    </div> -->
+    <el-dialog
+      title="分配案例"
+      :visible.sync="dialogVisibleMember"
+      :append-to-body="true"
+      width="25%"
+      height="80%"
+      :before-close="handleClose"
+      class="dialog_diy1 customWidth"
+    >
+      <div class="people">
+        <div class="people_top">
+          <div class="people_top_right">
+            <div class="people_search">
+              <div>选择评委</div>
+              <el-select v-model="reviewer" placeholder="请选择评委">
+                <el-option
+                  v-for="item in reviewerBox"
+                  :key="item.userid"
+                  :label="item.name"
+                  :value="item.userid"
+                ></el-option>
+              </el-select>
+            </div>
+          </div>
+        </div>
+        <el-checkbox
+          :indeterminate="isIndeterminate"
+          v-model="checkAll"
+          @change="handleCheckAllChange"
+          style="padding: 15px 0 0 15px"
+          >全选</el-checkbox
+        >
+        <el-checkbox-group
+          v-model="checkboxList"
+          class="people_name"
+          v-if="anliBox1.length"
+          @change="handleCheckedAnliChange"
+        >
+          <el-checkbox v-for="item in anliBox1" :key="item.id" :label="item.id">
+            <div class="t_j_box">
+              <div>案例名称:</div>
+              <el-tooltip
+                placement="top"
+                :content="item.info.title ? item.info.title : '暂无姓名'"
+              >
+                <span>{{
+                  item.info.title ? item.info.title : "暂无姓名"
+                }}</span>
+              </el-tooltip>
+            </div>
+          </el-checkbox>
+        </el-checkbox-group>
+        <div style="text-align: center; margin-top: 10px" v-else>暂无数据</div>
+      </div>
+      <span slot="footer" class="dialog-footer">
+        <el-button @click="dialogVisibleMember = false">取 消</el-button>
+        <el-button type="primary" @click="addCase">确定</el-button>
+      </span>
+    </el-dialog>
+    <el-dialog
+      title="评分"
+      :visible.sync="dialogVisibleScore"
+      :append-to-body="true"
+      width="25%"
+      height="80%"
+      :before-close="handleClose"
+      class="dialog_diy customWidth1"
+    >
+      <div class="scoreBox" v-for="(s, sIndex) in scoreDetail" :key="sIndex">
+        <div class="scoreCss">
+          <div class="scoreTitle">
+            <div><img src="../../../assets/avatar.png" alt="" /></div>
+            <div>{{ s.uname }}</div>
+          </div>
+          <div class="anliTitle">
+            <div>案例名称</div>
+            <div>{{ s.title }}</div>
+          </div>
+          <div class="anliBrief">
+            <div>案例简介</div>
+            <div style="width: 650px; height: 150px; overflow: auto">
+              {{ s.detail }}
+            </div>
+          </div>
+          <div class="anliScore">
+            <div>请选择评分</div>
+            <div>
+              <div class="scoreDiv">
+                <div>评审维度1</div>
+                <div>
+                  <el-input
+                    placeholder="输入分数"
+                    v-model="s.scoreAll.first"
+                    @change="isNumber($event, 1)"
+                  ></el-input>
+                </div>
+              </div>
+              <div class="scoreDiv">
+                <div>评审维度2</div>
+                <div>
+                  <el-input
+                    placeholder="输入分数"
+                    v-model="s.scoreAll.second"
+                    @change="isNumber($event, 2)"
+                  ></el-input>
+                </div>
+              </div>
+              <div class="scoreDiv">
+                <div>评审维度3</div>
+                <div>
+                  <el-input
+                    placeholder="输入分数"
+                    v-model="s.scoreAll.third"
+                    @change="isNumber($event, 3)"
+                  ></el-input>
+                </div>
+              </div>
+              <div class="scoreDiv">
+                <div>评审维度4</div>
+                <div>
+                  <el-input
+                    placeholder="输入分数"
+                    v-model="s.scoreAll.fourth"
+                    @change="isNumber($event, 4)"
+                  ></el-input>
+                </div>
+              </div>
+              <div class="scoreDiv">
+                <div>评审维度5</div>
+                <div>
+                  <el-input
+                    placeholder="输入分数"
+                    v-model="s.scoreAll.fivth"
+                    @change="isNumber($event, 5)"
+                  ></el-input>
+                </div>
+              </div>
+            </div>
+          </div>
+          <div class="anliContent">
+            <textarea
+              :rows="5"
+              class="tAreaCss"
+              placeholder="还有要说的吗..."
+              v-model="s.scoreAll.content"
+            ></textarea>
+          </div>
+          <div class="addScore" @click="addScore">进行评分</div>
+        </div>
+      </div>
+    </el-dialog>
+    <el-dialog
+      title="推荐省级评奖"
+      :visible.sync="dialogVisibleRecommend"
+      :append-to-body="true"
+      width="25%"
+      height="80%"
+      :before-close="handleClose"
+      class="dialog_diy customWidth1"
+    >
+      <div v-for="(r, rIndex) in scoreDetail" :key="rIndex">
+        <div class="reTitle">
+          <div>案例名称</div>
+          <div>{{ r.title }}</div>
+        </div>
+        <div class="reDetail">
+          <div>案例简介</div>
+          <div>{{ r.detail }}</div>
+        </div>
+        <div class="reScore">
+          <div>当前得分</div>
+          <div>
+            <span>{{ r.sumScore }}</span
+            >分
+          </div>
+        </div>
+        <div class="reBottom">
+          <div>提示:点击确定提交,即可推送到省级进行评奖</div>
+          <div @click="dialogVisibleRecommend = false">取消</div>
+          <div @click="addRecommend">确定提交</div>
+        </div>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+export default {
+  data() {
+    return {
+      page: 1,
+      total: 0,
+      // anliType: "",
+      tableHeight: "500px",
+      isLoading: false,
+      CourseType: [],
+      CourseTypeJson: {},
+      courseTypeId: {},
+      courseTypeSon: [],
+      anliBox: "",
+      tableData: [],
+      reviewer: "",
+      reviewerBox: [],
+      anliBox1: [],
+      checkboxList: [],
+      checkboxIdList: [],
+      isIndeterminate: false,
+      checkAll: false,
+      dialogVisibleMember: false,
+      dialogVisibleScore: false,
+      dialogVisibleRecommend: false,
+      scoreDetail: [
+        {
+          id: "",
+          uname: "",
+          title: "",
+          detail: "",
+          scoreAll: {
+            first: "",
+            second: "",
+            third: "",
+            fourth: "",
+            fivth: "",
+            content: "",
+          },
+          sumScore: 0,
+        },
+      ],
+    };
+  },
+  mounted() {
+    this.$nextTick(function () {
+      this.tableHeight =
+        window.innerHeight - this.$refs.table.$el.offsetTop - 200;
+      if (this.tableHeight <= 530) {
+        this.tableHeight = 530;
+      }
+      // 监听窗口大小变化
+      let self = this;
+      window.onresize = function () {
+        self.tableHeight =
+          window.innerHeight - self.$refs.table.$el.offsetTop - 200;
+        if (self.tableHeight <= 530) {
+          self.tableHeight = 530;
+        }
+      };
+    });
+  },
+  methods: {
+    tableRowClassName({ row, rowIndex }) {
+      if ((rowIndex + 1) % 2 === 0) {
+        return "even_row";
+      } else {
+        return "";
+      }
+    },
+    handleCurrentChange(val) {
+      this.page = val;
+      this.getAnliList();
+    },
+    search() {
+      this.page = 1;
+      this.getAnliList();
+    },
+    goTo(path) {
+      this.$router.push(path);
+    },
+    isNumber(e, t) {
+      if (e < 0) {
+        this.$message.error("请输入大于0的数值");
+        if (t == 1) {
+          this.scoreDetail[0].scoreAll.first = "";
+        } else if (t == 2) {
+          this.scoreDetail[0].scoreAll.second = "";
+        } else if (t == 3) {
+          this.scoreDetail[0].scoreAll.third = "";
+        } else if (t == 4) {
+          this.scoreDetail[0].scoreAll.fourth = "";
+        } else {
+          this.scoreDetail[0].scoreAll.fivth = "";
+        }
+        return;
+      } else if (e > 100) {
+        this.$message.error("数值不能大于100");
+        if (t == 1) {
+          this.scoreDetail[0].scoreAll.first = "";
+        } else if (t == 2) {
+          this.scoreDetail[0].scoreAll.second = "";
+        } else if (t == 3) {
+          this.scoreDetail[0].scoreAll.third = "";
+        } else if (t == 4) {
+          this.scoreDetail[0].scoreAll.fourth = "";
+        } else {
+          this.scoreDetail[0].scoreAll.fivth = "";
+        }
+        return;
+      }
+      let value = e.replace(/[^d]/g, ""); // 只能输入数字
+      value = value.replace(/^0+(d)/, "$1"); // 第一位0开头,0后面为数字,则过滤掉,取后面的数字
+      value = value.replace(/(d{15})d*/, "$1"); // 最多保留15位整数
+      // this.height = value;
+    },
+    handleCheckAllChange(val) {
+      if (this.checkboxIdList.length == 0) {
+        for (var i = 0; i < this.anliBox1.length; i++) {
+          this.checkboxIdList.push(this.anliBox1[i].id);
+        }
+      }
+      this.checkboxList = val ? this.checkboxIdList : [];
+      this.isIndeterminate = false;
+    },
+    handleCheckedAnliChange(value) {
+      let checkedCount = this.checkboxList.length;
+      this.checkAll = checkedCount === this.anliBox1.length;
+      this.isIndeterminate =
+        checkedCount > 0 && checkedCount < this.anliBox1.length;
+    },
+    handleClose(done) {
+      done();
+    },
+    clear() {
+      for (var i = 0; i < this.CourseType[0].length; i++) {
+        this.courseTypeId[this.CourseType[0][i].id] = "";
+      }
+      this.anliBox = "";
+      this.getAnliList();
+    },
+    getAnliList(rc) {
+      var typeE = [];
+      var typea, typeb, typec, typed;
+      this.tableData = [];
+      for (var i = 0; i < this.CourseType[0].length; i++) {
+        if (this.courseTypeId[this.CourseType[0][i].id] == "1") {
+          typeE.push(this.CourseType[0][i].id);
+        } else if (this.courseTypeId[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];
+          }
+          this.courseTypeSon.push(this.courseTypeId[this.CourseType[0][i].id]);
+        }
+      }
+      let params = {
+        typea: typea != undefined ? typea : "",
+        typeb: typeb != undefined ? typeb : "",
+        typec: typec != undefined ? typec : "",
+        typed: typed != undefined ? typed : "",
+        typeE: typeE.join(","),
+        cid: rc ? rc : "",
+        cn: this.anliBox == "" ? 0 : this.anliBox,
+        page: this.page,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectPoint", params)
+        .then((res) => {
+          this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
+          this.tableData = res.data[0];
+          for (var i = 0; i < this.tableData.length; i++) {
+            this.tableData[i].info = JSON.parse(this.tableData[i].info);
+            this.tableData[i].overview = JSON.parse(this.tableData[i].overview);
+            this.tableData[i].process = JSON.parse(this.tableData[i].process);
+            this.tableData[i].proact = JSON.parse(this.tableData[i].proact);
+            this.tableData[i].proexc = JSON.parse(this.tableData[i].proexc);
+            this.tableData[i].results = JSON.parse(this.tableData[i].results);
+            if (this.tableData[i].score != "") {
+              var point = JSON.parse(this.tableData[i].score);
+              var a = parseInt(point.first);
+              var b = parseInt(point.second);
+              var c = parseInt(point.third);
+              var d = parseInt(point.fourth);
+              var e = parseInt(point.fivth);
+              var sumScore = Math.round((a + b + c + d + e) / 5);
+              this.tableData[i].sum = sumScore;
+            }
+          }
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    selectType(rc) {
+      this.ajax
+        .get(this.$store.state.api + "selectMatType")
+        .then((res) => {
+          this.CourseType = res.data;
+          for (var i = 0; i < res.data[0].length; i++) {
+            for (var j = 0; j < res.data[1].length; j++) {
+              if (res.data[0][i].id == res.data[1][j].pid) {
+                if (!this.CourseTypeJson[res.data[0][i].id]) {
+                  this.CourseTypeJson[res.data[0][i].id] = [];
+                }
+                this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
+              }
+            }
+          }
+          this.getAnliList(rc);
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    getAdmin() {
+      let params = {
+        uid: this.$store.state.userInfo.userid,
+        cn: "",
+        page: this.page,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectReviewer", params)
+        .then((res) => {
+          this.reviewerBox = res.data[0];
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    getReviewerOrAdmin() {
+      if (this.$store.state.userInfo.type == 4) {
+        this.getUser();
+      } else {
+        this.selectType();
+      }
+    },
+    getUser() {
+      let params = {
+        uid: this.$store.state.userInfo.userid,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectCaseUser", params)
+        .then((res) => {
+          if (res.data[0].length > 0) {
+            var reCid = res.data[0][0].aBox;
+            this.selectType(reCid);
+          }
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    getAnliBox() {
+      this.ajax
+        .get(this.$store.state.api + "selecAnliBox")
+        .then((res) => {
+          this.anliBox1 = res.data[0];
+          for (var i = 0; i < this.anliBox1.length; i++) {
+            this.anliBox1[i].info = JSON.parse(this.anliBox1[i].info);
+            this.anliBox1[i].overview = JSON.parse(this.anliBox1[i].overview);
+            this.anliBox1[i].process = JSON.parse(this.anliBox1[i].process);
+            this.anliBox1[i].proact = JSON.parse(this.anliBox1[i].proact);
+            this.anliBox1[i].proexc = JSON.parse(this.anliBox1[i].proexc);
+            this.anliBox1[i].results = JSON.parse(this.anliBox1[i].results);
+          }
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    addCase() {
+      if (this.reviewer == "") {
+        this.$message.error("请选择评审员");
+        return;
+      } else if (this.checkboxList.length == 0) {
+        this.$message.error("请选择案例");
+        return;
+      }
+      let params = [
+        {
+          uid: this.reviewer,
+          box: this.checkboxList.join(","),
+        },
+      ];
+      this.ajax
+        .post(this.$store.state.api + "insertCase", params)
+        .then((res) => {
+          this.$message({
+            message: "分配成功",
+            type: "success",
+          });
+          this.reviewer = "";
+          this.checkboxList = [];
+          this.isIndeterminate = false;
+          this.checkAll = false;
+          this.dialogVisibleMember = false;
+        })
+        .catch((err) => {
+          this.$message.error("网络不佳");
+          console.error(err);
+        });
+    },
+    openScore(a, t) {
+      this.scoreDetail[0].id = a.id;
+      this.scoreDetail[0].title = a.info.title;
+      this.scoreDetail[0].detail = a.info.courseText;
+      this.scoreDetail[0].uname = a.uname;
+      this.getScore(a.id, t);
+    },
+    getScore(id, t) {
+      let params = {
+        rid: id,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectScore", params)
+        .then((res) => {
+          if (res.data[0].length > 0) {
+            this.scoreDetail[0].scoreAll = JSON.parse(res.data[0][0].score);
+            var a = parseInt(this.scoreDetail[0].scoreAll.first);
+            var b = parseInt(this.scoreDetail[0].scoreAll.second);
+            var c = parseInt(this.scoreDetail[0].scoreAll.third);
+            var d = parseInt(this.scoreDetail[0].scoreAll.fourth);
+            var e = parseInt(this.scoreDetail[0].scoreAll.fivth);
+            this.scoreDetail[0].sumScore = Math.round((a + b + c + d + e) / 5);
+          } else {
+            this.scoreDetail[0].scoreAll = {
+              first: "",
+              second: "",
+              third: "",
+              fourth: "",
+              fivth: "",
+              content: "",
+            };
+            this.scoreDetail[0].sumScore = 0;
+          }
+          if (t == 1) {
+            this.dialogVisibleScore = true;
+          } else {
+            this.dialogVisibleRecommend = true;
+          }
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    addScore() {
+      if (this.scoreDetail[0].scoreAll.first == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      } else if (this.scoreDetail[0].scoreAll.second == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      } else if (this.scoreDetail[0].scoreAll.third == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      } else if (this.scoreDetail[0].scoreAll.fourth == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      } else if (this.scoreDetail[0].scoreAll.fivth == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      } else if (this.scoreDetail[0].scoreAll.content == "") {
+        this.$message.error("请将信息填写完整");
+        return;
+      }
+      let params = {
+        rid: this.scoreDetail[0].id,
+        suser: this.$store.state.userInfo.userid,
+        s: JSON.stringify(this.scoreDetail[0].scoreAll),
+      };
+      this.ajax
+        .get(this.$store.state.api + "addScore", params)
+        .then((res) => {
+          this.$message({
+            message: "评分成功",
+            type: "success",
+          });
+          this.scoreDetail = [
+            {
+              id: "",
+              uname: "",
+              title: "",
+              detail: "",
+              scoreAll: {
+                first: "",
+                second: "",
+                third: "",
+                fourth: "",
+                fivth: "",
+                content: "",
+              },
+              sumScore: 0,
+            },
+          ];
+          this.dialogVisibleScore = false;
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    addRecommend() {
+      if (this.scoreDetail[0].sumScore == 0) {
+        this.$message.error("还未评审,不可推荐");
+        return;
+      }
+      let params = {
+        id: this.scoreDetail[0].id,
+        rec: 2,
+      };
+      this.ajax
+        .get(this.$store.state.api + "updateRaceRec", params)
+        .then((res) => {
+          this.$message({
+            message: "推荐成功",
+            type: "success",
+          });
+          this.dialogVisibleRecommend = false;
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+  },
+  created() {
+    // this.getAnliList();
+    this.getAdmin();
+    // this.selectType();
+    this.getReviewerOrAdmin();
+    this.getAnliBox();
+  },
+};
+</script>
+
+<style scoped>
+.el-popover {
+  min-width: 80px;
+  text-align: center;
+}
+</style>
+
+<style scoped>
+.dialog_diy1 >>> .el-dialog__header,
+.dialog_diy >>> .el-dialog__header {
+  background: #3d67bd !important;
+  padding: 15px 20px;
+}
+.dialog_diy1 >>> .el-dialog__header {
+  text-align: center;
+}
+.dialog_diy1 >>> .el-dialog__title,
+.dialog_diy >>> .el-dialog__title {
+  color: #fff;
+}
+
+.dialog_diy1 >>> .el-dialog__headerbtn,
+.dialog_diy >>> .el-dialog__headerbtn {
+  top: 19px;
+}
+
+.dialog_diy1 >>> .el-dialog__headerbtn .el-dialog__close,
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
+  color: #fff;
+}
+
+.dialog_diy1 >>> .el-dialog__headerbtn .el-dialog__close:hover,
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
+  color: #fff;
+}
+
+.dialog_diy1 >>> .el-dialog__body,
+.dialog_diy1 >>> .el-dialog__footer,
+.dialog_diy >>> .el-dialog__body,
+.dialog_diy >>> .el-dialog__footer {
+  background: #fafafa;
+}
+
+.disUoloadSty >>> .el-upload--picture-card {
+  display: none;
+  /* 上传按钮隐藏 */
+}
+
+.tou {
+  border-bottom: 1px solid #c9c9c9;
+  height: 50px;
+  font-size: 30px;
+}
+
+.touTop {
+  margin: 15px auto;
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+  justify-content: space-between;
+  width: 95%;
+}
+
+.touLeft {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+}
+
+.touLeft > div:nth-child(1) {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+}
+
+.touLeft > div > div {
+  margin-right: 10px;
+}
+
+.touRight > div:nth-child(2) > .el-button {
+  background: #2268bd;
+  color: #fff;
+}
+
+.student_page {
+  width: 95%;
+  margin: 20px auto 0;
+}
+
+.anliBox {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: wrap;
+  align-items: flex-start;
+  margin: 25px auto 0;
+  width: 95%;
+  height: 570px;
+}
+
+.anLi {
+  width: 280px;
+  margin: 0 20px 10px 0;
+  box-shadow: 3px 1px 15px 3px #f0f0f2;
+}
+
+.anliImg {
+  width: 100%;
+  height: 170px;
+}
+
+.anliImg > img {
+  width: 100%;
+  height: 100%;
+}
+
+.anliBot {
+  background: #fff;
+  border: 1px solid #f5f5f5;
+  padding: 5px 0 10px 0;
+  box-sizing: border-box;
+}
+
+.detailBox {
+  padding: 0 0 0 10px;
+  box-sizing: border-box;
+}
+
+.detailBox > div:nth-child(1) {
+  font-size: 20px;
+  width: 250px;
+  white-space: nowrap;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  word-break: break-word;
+}
+
+.detailBox > div:nth-child(2) {
+  color: #999;
+  margin-top: 5px;
+  font-size: 14px;
+}
+
+.anliButton {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+  justify-content: center;
+  padding: 10px 0 0 0;
+}
+
+.anliButton > div {
+  margin-right: 5px;
+}
+
+.anliButton > div > .el-button {
+  background: #409efe;
+  color: #fff;
+  width: 80px;
+  border-radius: 5px;
+}
+
+.customWidth >>> .el-dialog {
+  min-width: 500px !important;
+}
+.customWidth1 >>> .el-dialog {
+  min-width: 800px !important;
+}
+
+.people {
+  border: 1px solid rgb(229 229 229);
+  height: 495px;
+  border-radius: 5px;
+  width: 100%;
+  overflow: auto;
+  background: #fff;
+  box-shadow: 0px 0px 10px 8px #ededed;
+}
+
+.people::-webkit-scrollbar {
+  /*滚动条整体样式*/
+  width: 6px;
+  /*高宽分别对应横竖滚动条的尺寸*/
+  height: 6px;
+}
+
+/*定义滚动条轨道 内阴影+圆角*/
+.people::-webkit-scrollbar-track {
+  border-radius: 10px;
+  background-color: #eee;
+}
+
+/*定义滑块 内阴影+圆角*/
+.people::-webkit-scrollbar-thumb {
+  border-radius: 10px;
+  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
+  background-color: rgba(0, 0, 0, 0.1);
+}
+
+.people_top {
+  display: flex;
+  width: 100%;
+  flex-direction: column;
+  padding: 10px 25px 10px;
+  box-sizing: border-box;
+  border-bottom: 1px solid #f4f4f7;
+}
+
+.people_top_right {
+  height: 40px;
+  margin-bottom: 10px;
+}
+
+.people_search {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+}
+
+.people_search > div:nth-child(1) {
+  font-size: 20px;
+  margin-right: 10px;
+}
+
+.t_j_box {
+  display: flex;
+}
+
+.t_j_box span:nth-child(1) {
+  width: 15%;
+  overflow: hidden;
+  margin-right: 10px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+
+.t_j_box span:nth-child(2) {
+  width: 300px;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  margin-right: 10px;
+}
+
+.t_j_box span:nth-child(3) {
+  width: calc(55% - 20px);
+  overflow: hidden;
+  text-overflow: ellipsis;
+}
+
+.people_name {
+  display: flex;
+  flex-direction: column;
+  flex-wrap: wrap;
+  align-items: flex-start;
+  padding: 15px 0 0 15px;
+}
+
+.people_name >>> .el-checkbox {
+  margin-bottom: 10px;
+}
+.all_choose > span {
+  margin-right: 10px;
+}
+.clear {
+  width: 70px;
+  height: 35px;
+  background: #2268bc;
+  color: #fff;
+  text-align: center;
+  border-radius: 5px;
+  line-height: 35px;
+  cursor: pointer;
+}
+.anliCss {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+}
+.anliCss > div:nth-child(1) {
+  margin-right: 10px;
+}
+.scoreBox {
+  background: #fff;
+}
+.scoreCss {
+  padding: 10px;
+}
+.scoreTitle {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+}
+.scoreTitle > div:nth-child(1) {
+  width: 50px;
+}
+.scoreTitle > div:nth-child(1) > img {
+  width: 100%;
+  height: 100%;
+}
+.scoreTitle > div:nth-child(2) {
+  margin-left: 15px;
+}
+.anliTitle,
+.anliBrief,
+.anliScore {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: flex-start;
+  padding: 10px 0 10px 0;
+  font-size: 18px;
+}
+.anliTitle > div:nth-child(2),
+.anliBrief > div:nth-child(2) {
+  font-size: 17px;
+  margin-left: 10px;
+  color: #b0b0b0;
+}
+.anliScore > div:nth-child(2) {
+  margin: -13px 0 0 20px;
+}
+.scoreDiv {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+  padding: 10px 0;
+}
+.scoreDiv > div:nth-child(2) {
+  margin-left: 10px;
+}
+.scoreDiv > div:nth-child(2) >>> .el-input__inner {
+  border-radius: 15px;
+  background: #fafafa;
+  height: 30px;
+}
+.anliContent {
+  width: 80%;
+  margin: 0 auto;
+  border-top: 2px solid #ededed;
+  padding: 10px 0 0 0;
+}
+.tAreaCss {
+  resize: none;
+  width: 100%;
+  text-indent: 10px;
+  border: 1px solid #e6e6e8;
+  background: #fafafa;
+}
+.tAreaCss:focus-visible {
+  outline: none !important;
+}
+.addScore {
+  width: 75%;
+  margin: 10px auto;
+  background: #409efe;
+  color: #fff;
+  height: 35px;
+  text-align: center;
+  line-height: 35px;
+  border-radius: 5px;
+  cursor: pointer;
+}
+.reTitle {
+  font-size: 18px;
+}
+.reTitle > div:nth-child(2) {
+  width: 60%;
+  border: 1px solid #dbdbdb;
+  font-size: 16px;
+  height: 35px;
+  line-height: 35px;
+  text-indent: 10px;
+  border-radius: 5px;
+  margin: 10px 0;
+}
+.reDetail,
+.reScore {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: flex-start;
+  padding: 10px 0 10px 0;
+  font-size: 18px;
+}
+.reDetail > div:nth-child(2) {
+  font-size: 17px;
+  margin-left: 10px;
+  color: #b0b0b0;
+  width: 650px;
+  height: 150px;
+  overflow: auto;
+}
+.reScore > div:nth-child(2) {
+  font-size: 35px;
+  margin-left: 20px;
+}
+.reScore > div:nth-child(2) > span {
+  color: #6188d5;
+}
+.reBottom {
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+  justify-content: flex-end;
+}
+.reBottom > div:nth-child(2) {
+  border: 1px solid #d7d7d9;
+  width: 70px;
+  height: 35px;
+  text-align: center;
+  line-height: 35px;
+  border-radius: 5px;
+  margin: 0 10px 0 20px;
+  cursor: pointer;
+}
+.reBottom > div:nth-child(3) {
+  background: #409efe;
+  color: #fff;
+  height: 35px;
+  line-height: 35px;
+  width: 85px;
+  text-align: center;
+  border-radius: 5px;
+  cursor: pointer;
+}
+</style>

+ 42 - 5
src/components/pages/munAdmin/user.vue

@@ -59,7 +59,7 @@
           <el-table-column label="操作" min-width="20">
             <template slot-scope="scope">
               <div class="tableButton">
-                <el-button @click="dialogVisibleMember = true"
+                <el-button @click="assCase(scope.row.userid)"
                   >分配案例</el-button
                 >
                 <el-button @click="upUser(scope.row)">修改</el-button>
@@ -149,9 +149,9 @@
               <el-select v-model="reviewer" placeholder="请选择评委">
                 <el-option
                   v-for="item in reviewerBox"
-                  :key="item.id"
+                  :key="item.userid"
                   :label="item.name"
-                  :value="item.id"
+                  :value="item.userid"
                 ></el-option>
               </el-select>
             </div>
@@ -188,7 +188,7 @@
       </div>
       <span slot="footer" class="dialog-footer">
         <el-button @click="dialogVisibleMember = false">取 消</el-button>
-        <el-button type="primary">确定</el-button>
+        <el-button type="primary" @click="addCase">确定</el-button>
       </span>
     </el-dialog>
   </div>
@@ -359,6 +359,7 @@ export default {
         n: this.sName,
         p: this.sPhone,
         t: this.sType,
+        s: this.$store.state.userInfo.school,
         uid: this.upId,
       };
       this.ajax
@@ -416,6 +417,42 @@ export default {
           console.error(err);
         });
     },
+    assCase(id) {
+      this.reviewer = id;
+      this.dialogVisibleMember = true;
+    },
+    addCase() {
+      if (this.reviewer == "") {
+        this.$message.error("请选择评审员");
+        return;
+      } else if (this.checkboxList.length == 0) {
+        this.$message.error("请选择案例");
+        return;
+      }
+      let params = [
+        {
+          uid: this.reviewer,
+          box: this.checkboxList.join(","),
+        },
+      ];
+      this.ajax
+        .post(this.$store.state.api + "insertCase", params)
+        .then((res) => {
+          this.$message({
+            message: "分配成功",
+            type: "success",
+          });
+          this.reviewer = "";
+          this.checkboxList = [];
+          this.isIndeterminate = false;
+          this.checkAll = false;
+          this.dialogVisibleMember = false;
+        })
+        .catch((err) => {
+          this.$message.error("网络不佳");
+          console.error(err);
+        });
+    },
   },
   created() {
     this.getAdmin();
@@ -602,7 +639,7 @@ export default {
   white-space: nowrap;
 }
 .t_j_box span:nth-child(2) {
-  width: 30%;
+  width: 300px;
   overflow: hidden;
   text-overflow: ellipsis;
   margin-right: 10px;

+ 3 - 3
src/components/pages/race/addRace.vue

@@ -74,7 +74,7 @@
       <el-button
         type="primary"
         @click="goTo('/eventCenter?userid=' + userid + '&oid=' + oid)"
-        >赛事信息</el-button
+        >活动信息</el-button
       >
       <div
         style="
@@ -145,8 +145,8 @@
         </div>
         <div class="cresteMessage">
           案例征集必填内容已提交,您确定要跳过网页端填写吗?
-          <span style="color: #9a9a9a"
-            >建议:网页端填写便于平台留存与展示,建议填写。</span
+          <div style="color: #9a9a9a"
+            >建议:网页端填写便于平台留存与展示,建议填写。</div
           >
         </div>
       </div>

+ 1 - 1
src/components/pages/race/addRace/raceDetail.vue

@@ -9,7 +9,7 @@
               <img src="../../../../assets/icon/race/progress.png" alt="" />
             </div>
             <div class="stepRightNav" @click="jump('first')">
-              <div>案例赛事信息</div>
+              <div>案例活动信息</div>
               <div>说明</div>
             </div>
           </div>

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

@@ -12,14 +12,14 @@
       </el-carousel>
     </div>
     <div class="center_nav">
-      <span @click="steps = 1" :class="{ active: steps == 1 }">赛事信息</span>
+      <span @click="steps = 1" :class="{ active: steps == 1 }">活动信息</span>
       <span @click="steps = 2" :class="{ active: steps == 2 }">我的案例</span>
-      <span @click="steps = 3" :class="{ active: steps == 3 }">项目进度</span>
+      <!-- <span @click="steps = 3" :class="{ active: steps == 3 }">项目进度</span> -->
     </div>
     <div class="center_body">
       <EventMessage v-if="steps == 1"></EventMessage>
       <MyAnli :userid="userid" :oid="oid" v-if="steps == 2"></MyAnli>
-      <ProjectJd v-if="steps == 3"></ProjectJd>
+      <!-- <ProjectJd v-if="steps == 3"></ProjectJd> -->
     </div>
     <div class="center_btn">
       <el-button
@@ -28,12 +28,12 @@
         @click="goTo('/addRace')"
         >案例设计(必填)</el-button
       >
-      <el-button
+      <!-- <el-button
         type="primary"
         style="margin-left: 110px; background: rgb(91, 134, 210)"
         @click="goToX()"
         >平台实施(选填)</el-button
-      >
+      > -->
     </div>
   </div>
 </template>

+ 11 - 3
src/components/pages/race/eventCenter/anliDetail.vue

@@ -1326,12 +1326,12 @@
         </div>
       </div>
       <div class="fixBottom">
-        <div class="returnAnLi" style="width: 100px" @click="goToX()">
+        <!-- <div class="returnAnLi" style="width: 100px" @click="goToX()">
           前往评分
-        </div>
+        </div> -->
         <div
           class="returnAnLi"
-          @click="goTo('/eventCenter?userid=' + userid + '&oid=' + oid)"
+          @click="returnWhere"
         >
           返回
         </div>
@@ -1428,6 +1428,7 @@ export default {
       userid: this.$store.state.userInfo.userid,
       oid: this.$store.state.userInfo.school,
       aid: this.$route.query.aid,
+      type:this.$route.query.type,
       anliBox: [],
       imgAnliBox: [],
       noBanner: require("../../../../assets/noBanner.jpg"),
@@ -1477,6 +1478,13 @@ export default {
     fullTools() {
       this.full = !this.full;
     },
+    returnWhere(){
+      if(this.type == 0){
+        this.goTo("/eventCenter");
+      }else{
+        this.goTo("/anliList");
+      }
+    },
     selectAnLi() {
       let params = {
         id: this.aid,

+ 210 - 22
src/components/pages/race/eventCenter/eventMessage.vue

@@ -8,19 +8,19 @@
           alt=""
         />
         <span @click="checkType(1)" :class="{ active: atype == 1 }"
-          >活动目标</span
+          >案例类别</span
         >
         <span @click="checkType(2)" :class="{ active: atype == 2 }"
-          >征集与报送要求</span
+          >案例要求</span
         >
         <span @click="checkType(3)" :class="{ active: atype == 3 }"
-          >报送材料清单及要求</span
+          >报送要求</span
         >
         <span @click="checkType(4)" :class="{ active: atype == 4 }"
-          >组织作品推荐参考指标</span
+          >时间安排</span
         >
         <span @click="checkType(5)" :class="{ active: atype == 5 }"
-          >联系我们</span
+          >其他事宜</span
         >
       </div>
     </div>
@@ -28,22 +28,39 @@
       <div class="center_box" ref="box1">
         <div class="center_title">
           <img src="../../../../assets/icon/race/infoBook.png" alt="" />
-          <span>活动目标</span>
+          <span>案例类别</span>
         </div>
         <div class="center_detail">
           <div>
+            <span> (一)“文化传承”类项目式学习案例 </span>
+          </div>
+          <div style="text-indent: 32px">
             <span
-              >(一)倡导以学为中心,转变教与学关系,引导开展项目式学习、大单元教学,促进深度学习、高效能学习,推动新课程的落地,落实学生核心素养,提高课堂教育教学质量;</span
+              >从地方特色、优秀传统文化(物质与非物质文化)出发,学生通过资料搜集、调查采访、分析探究、设计制作、宣传推介等活动,对项目的文化起源、价值功用、历史沿革、艺术设计、现代传承创造与创新等进行深入学习探究的活动案例。</span
             >
           </div>
           <div>
+            <span> (二)“工程设计”类项目式学习案例 </span>
+          </div>
+          <div style="text-indent: 32px">
+            <span
+              >以工程项目为载体,学生综合运用科学、技术、数学、工程等多学科知识和技能,经历调查研究、定义需求、方案设计、可行性分析、原型设计、测试与迭代、产品设计等流程,以工程设计作品来解决问题的活动案例。</span
+            >
+          </div>
+          <div>
+            <span> (三)“学科主题探究”类项目式学习案例 </span>
+          </div>
+          <div style="text-indent: 32px">
             <span
-              >(二)关注技术的育人功能和教育价值,积极探索新技术、新应用的多种可能,提高教师的信息素养,支持学科教学个性化、有效性实施,促进技术与学科的深度融合、创新应用;</span
+              >基于学生在学科学习和生活中的真实问题而开展的学科探究,围绕学科核心概念和核心素养,建立学科知识与真实情境中问题解决的关联,学生经历完整的运用学科知识、概念、策略去学以致用解决真实问题的学习案例。</span
             >
           </div>
           <div>
+            <span> (四)“跨学科主题探究”类项目式学习案例 </span>
+          </div>
+          <div style="text-indent: 32px">
             <span
-              >(三)搭建教师专业成长与交流活动平台,汇聚中小学信息化教学创新应用的典型优秀案例和经验成果,扩大教学成果的辐射影响,促进学校均衡可持续发展,推动基础教育高质量发展。</span
+              >选取两门及以上学科的枢纽式、节点性大概念,形成综合性主题和主干知识内容,进行问题化、项目式学习任务设计,根据问题解决和探究学习过程的需要,重塑学科知识和技能结构,引导开展自主、合作、探究学习,促进深度学习,提高综合运用多学科知识分析问题和解决问题的能力,发展跨学科核心素养的学习案例。</span
             >
           </div>
         </div>
@@ -51,23 +68,39 @@
       <div class="center_box" ref="box2">
         <div class="center_title">
           <img src="../../../../assets/icon/race/infoBook.png" alt="" />
-          <span>征集与报送要求</span>
+          <span>案例要求</span>
         </div>
         <div class="center_detail">
           <div>
-            <span> (一)征集时间 </span>
+            <span> (一)指向核心素养培养 </span>
           </div>
-          <div>
+          <div style="text-indent: 32px">
             <span
-              >各地市面向学校征集作品时间为2022年6月至8月中句,其间5月中下旬将开放平台支持地级市教育局为单位征集作品;9月10日前各地市向省完成优秀作品的推送
+              >围绕义务教育课程方案与课程标准(2022版)培养要求,依据学生终身发展与社会发展需要,重视学生的正确价值观念、必备品格与关键能力培育,培养学生的创新精神和实践能力
             </span>
           </div>
           <div>
-            <span>(二)征集要求 </span>
+            <span>(二)注重过程记录与评价 </span>
+          </div>
+          <div style="text-indent: 32px">
+            <span
+              >注重学生在项目问题解决中的过程性数据,包括学生的日志、记录、文稿等,生成学生在项目进程中的真实记录。依据项目的过程性证据反馈学生的学习进展,依据学生项目记录生成学生的客观评价。</span
+            >
+          </div>
+          <div>
+            <span>(三)注重真实问题解决 </span>
+          </div>
+          <div style="text-indent: 32px">
+            <span
+              >项目式学习以学生探究性、自主性的学习任务为引导,加强知识学习与学生经验、现实生活、社会实践之间的联系,注重真实情境的创设,学生做中学、用中学、创中学,增强认识真实世界、解决真实问题的能力。</span
+            >
           </div>
           <div>
+            <span>(四)强调成果创意物化 </span>
+          </div>
+          <div style="text-indent: 32px">
             <span
-              >每位教师一个子项目限报1个作品,参加子项目不超过2个。各组织单位须严格按照项目要求、数量(见表1)报送作品,并对报送信息和作品的准确性、完整性负责,逾期提交的作品不纳入评审范围。</span
+              >项目式学习强调解决问题产生的公开成果,从而体现项目的整体性、活动性。项目鼓励学生积极呈现在项目式学习中形成的物化成果,包括工程日志、项目研究报告、思维导图、设计方案、制作模型、产品等,引导所有参与者和公众对项目成果进行评论与分析。</span
             >
           </div>
         </div>
@@ -75,23 +108,135 @@
       <div class="center_box" ref="box3">
         <div class="center_title">
           <img src="../../../../assets/icon/race/infoBook.png" alt="" />
-          <span>报送材料清单及要求</span>
+          <span>报送要求</span>
+        </div>
+        <div class="center_detail">
+          <div>
+            <span> (一)报送内容 </span>
+          </div>
+          <div style="text-indent: 32px">
+            <span
+              >项目式学习活动案例报送内容主要反映学校或教师组织学生开展且已经完成的项目式学习的设计思路、活动过程与典型成果。报送材料由两部分组成。
+              1.项目式学习方案设计。包括项目信息、项目简介、驱动问题与子问题、学习目标(核心概念界定)、预期学习成果、项目评价、项目活动设计等(见附件1)。
+              2.项目式学习活动案例。对项目活动实施过程的完整描述,含不同阶段的实施过程、活动工具与支架开发、活动成果交流与展示、活动评价与反思等;以及支持以附件形式上传学生项目式学习的过程记录与成果作品(见附件2)。
+            </span>
+          </div>
+          <div>
+            <span> (二)报送方法 </span>
+          </div>
+          <div style="text-indent: 32px">
+            <span
+              >1.报送名额。以各地级以上市为单位统一报送。广州、深圳报送案例总数各不超过80项,其他地市选送案例总数各不超过60项,每校每类别案例限报一项。华南师大附属中学、广东实验中学、华南师大附属小学每校限报4项。每项的作者不超过6人。
+              2.报送方式。填报者登陆广东省项目式学习案例征集活动中心(见附件5),根据平台的内容与提示进行填报。
+            </span>
+          </div>
         </div>
-        <div class="center_detail">暂无信息</div>
       </div>
       <div class="center_box" ref="box4">
         <div class="center_title">
           <img src="../../../../assets/icon/race/infoBook.png" alt="" />
-          <span>组织作品推荐参考指标</span>
+          <span>时间安排</span>
+        </div>
+        <div class="center_detail">
+          <div>
+            <span> (一)提交阶段 </span>
+          </div>
+          <div style="text-indent: 32px">
+            <span
+              >(1)通过参与地市组织的活动提交案例;
+              (2)地市没有组织的,可自行通过在线方式提交。自通告发布之日起,可联系xxxx获取账号。
+              提交阶段截止2022年3月15日。
+            </span>
+          </div>
+          <div>
+            <span> (二)评审阶段 </span>
+          </div>
+          <div style="text-indent: 32px">
+            <span
+              >主办方广东省教育研究院将组织专家对提交的案例进行遴选,并于专家遴选后公示、公布最终结果。
+            </span>
+          </div>
         </div>
-        <div class="center_detail">暂无信息</div>
       </div>
       <div class="center_box" ref="box5">
         <div class="center_title">
           <img src="../../../../assets/icon/race/infoBook.png" alt="" />
-          <span>联系我们</span>
+          <span>其他事宜</span>
+        </div>
+        <div class="center_detail">
+          <div style="text-indent: 32px">
+            <span
+              >本活动不收取任何费用。本院为选出的优秀案例作者出具优秀案例证书,优秀案例将纳入广东省STEM教育资源平台并结集出版,供广大教师使用。
+              凡在活动中发现违规违纪和学术不端行为的,除按有关规定处理外,将被列入不良教科研信用记录。
+            </span>
+          </div>
+          <div style="text-indent: 32px">
+            <span
+              >如引起知识产权异议和纠纷,其责任由案例作者承担。
+              请各地积极组织学校申报,相关材料登录广东省教育研究院网站(http://gdae.gdedu.gov.cn/)通知公告栏下载。如对本次案例征集有任何疑问,可发送邮件至gdstem2019@126.com,或联系电话020-83344192。
+            </span>
+          </div>
+          <div
+            style="
+              text-indent: 32px;
+              display: flex;
+              flex-direction: row;
+              flex-wrap: nowrap;
+              align-items: flex-start;
+            "
+          >
+            <div>
+              <div>附件:</div>
+            </div>
+            <div class="down">
+              <div
+                @click="
+                  downloadFile(
+                    'https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/%E9%99%84%E4%BB%B611670570711020.docx'
+                  )
+                "
+              >
+                1.地级以上市案例报送工作联系人回执
+              </div>
+              <div
+                @click="
+                  downloadFile(
+                    'https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/%E9%99%84%E4%BB%B611670572187326.docx'
+                  )
+                "
+              >
+                2.地级以上市项目式学习案例推荐名单一览表
+              </div>
+              <div
+                @click="
+                  downloadFile(
+                    'https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/%E9%99%84%E4%BB%B611670572460682.docx'
+                  )
+                "
+              >
+                3.项目式学习活动方案参考模板
+              </div>
+              <div
+                @click="
+                  downloadFile(
+                    'https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/%E9%99%84%E4%BB%B611670572614832.docx'
+                  )
+                "
+              >
+                4.项目式学习活动案例参考模板
+              </div>
+              <div
+                @click="
+                  downloadFile(
+                    'https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/%E9%99%84%E4%BB%B611670572658255.docx'
+                  )
+                "
+              >
+                5.广东省项目式学习案例征集平台操作手册(案例提交者)
+              </div>
+            </div>
+          </div>
         </div>
-        <div class="center_detail">暂无信息</div>
       </div>
     </div>
   </div>
@@ -125,6 +270,42 @@ export default {
       console.log("5-------5", this.$refs["box" + 5].offsetHeight);
       console.log(_top);
     },
+    downloadFile(url) {
+      let _url = "";
+      if (
+        url.indexOf("https://view.officeapps.live.com/op/view.aspx?src=") != -1
+      ) {
+        _url = url.split(
+          "https://view.officeapps.live.com/op/view.aspx?src="
+        )[1];
+      } else {
+        _url = url;
+      }
+      const x = new XMLHttpRequest();
+      x.open("GET", _url, true);
+      x.responseType = "blob";
+      x.onload = function (e) {
+        // const url = window.URL.createObjectURL(x.response);
+        // const a = document.createElement("a");
+        // a.href = url;
+        // a.target = "_blank";
+        // a.download = url;
+        // a.click();
+        // a.remove();
+        let content = x.response;
+        let elink = document.createElement("a");
+        elink.download = decodeURI(
+          _url.split("https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/")[1]
+        );
+        elink.style.display = "none";
+        let blob = new Blob([content]);
+        elink.href = URL.createObjectURL(blob);
+        document.body.appendChild(elink);
+        elink.click();
+        document.body.removeChild(elink);
+      };
+      x.send();
+    },
     allScrollTop(ev) {
       console.log(ev.target.scrollTop);
       const scrollTop = this.$refs["box"].scrollTop;
@@ -140,7 +321,7 @@ export default {
         if (
           i > 1 &&
           (Math.round(ev.target.scrollTop) >= _top ||
-          Math.round(ev.target.scrollTop) + clientHeight >= scrollHeight)
+            Math.round(ev.target.scrollTop) + clientHeight >= scrollHeight)
         ) {
           this.atype = i;
           break;
@@ -182,6 +363,7 @@ export default {
 }
 .center_title img {
   margin-right: 5px;
+  margin-top: -10px;
 }
 .center_title span {
   font-size: 19px;
@@ -245,4 +427,10 @@ export default {
 .center_nav div span + span {
   margin-top: 10px;
 }
+.down {
+  margin-top: 0 !important;
+}
+.down > div {
+  cursor: pointer;
+}
 </style>

+ 1 - 1
src/components/pages/race/eventCenter/myAnli.vue

@@ -54,7 +54,7 @@
             <div
               class="rightButton"
               style="background: #225ac7"
-              @click="goTo('/anliDetail?aid=' + an.id)"
+              @click="goTo('/anliDetail?aid=' + an.id + '&type=0')"
             >
               查看详情
             </div>

+ 9 - 0
src/components/tools/leftBar.vue

@@ -21,6 +21,15 @@
             </div>
             <span>账号管理</span>
           </el-menu-item>
+          <el-menu-item index="/school" v-if="nav.indexOf('/school') != -1">
+            <div class="img" v-if="path == '/school'">
+              <img src="../../assets/icon/works-active.png" alt="" />
+            </div>
+            <div class="img" v-else>
+              <img src="../../assets/icon/works.png" alt="" />
+            </div>
+            <span>学校管理</span>
+          </el-menu-item>
           <el-menu-item index="/score" v-if="nav.indexOf('/score') != -1">
             <div class="img" v-if="path == '/score'">
               <img src="../../assets/icon/works-active.png" alt="" />

+ 90 - 81
src/router/index.js

@@ -13,93 +13,102 @@ import data from '@/components/pages/munAdmin/data'
 import notice from '@/components/pages/munAdmin/notice'
 import score from '@/components/pages/munAdmin/score'
 import user from '@/components/pages/munAdmin/user'
+import school from '@/components/pages/munAdmin/school'
 
 
 Vue.use(Router).use(ElementUI)
 
 const router = new Router({
     routes: [{
-        path: '/login',
-        name: 'login',
-        component: login,
-        meta: {
-            requireAuth: '' // 不需要鉴权
-        }
-    }, {
-        path: '/register',
-        name: 'register',
-        component: register,
-        meta: {
-            requireAuth: false // 不需要鉴权
-        }
-    }, {
-        path: '/eventCenter',
-        name: 'eventCenter',
-        component: eventCenter,
-        meta: {
-            requireAuth: true // 不需要鉴权
-        }
-    }, {
-        path: '/addRace',
-        name: 'addRace',
-        component: addRace,
-        meta: {
-            requireAuth: true // 不需要鉴权
-        }
-    }, {
-        path: '/anliDetail',
-        name: 'anliDetail',
-        component: anliDetail,
-        meta: {
-            requireAuth: true // 不需要鉴权
-        }
-    }, {
-        path: '/demo',
-        name: 'demo',
-        component: demo,
-        meta: {
-            requireAuth: false // 不需要鉴权
-        }
-    }, {
-        path: '/anliList',
-        name: 'anliList',
-        component: anliList,
-        meta: {
-            requireAuth: true // 不需要鉴权
-        }
-    },
-    {
-        path: '/data',
-        name: 'data',
-        component: data,
-        meta: {
-            requireAuth: true // 不需要鉴权
-        }
-    },
-    {
-        path: '/notice',
-        name: 'notice',
-        component: notice,
-        meta: {
-            requireAuth: true // 不需要鉴权
-        }
-    },
-    {
-        path: '/score',
-        name: 'score',
-        component: score,
-        meta: {
-            requireAuth: true // 不需要鉴权
-        }
-    },
-    {
-        path: '/user',
-        name: 'user',
-        component: user,
-        meta: {
-            requireAuth: true // 不需要鉴权
-        }
-    },]
+            path: '/login',
+            name: 'login',
+            component: login,
+            meta: {
+                requireAuth: '' // 不需要鉴权
+            }
+        }, {
+            path: '/register',
+            name: 'register',
+            component: register,
+            meta: {
+                requireAuth: false // 不需要鉴权
+            }
+        }, {
+            path: '/eventCenter',
+            name: 'eventCenter',
+            component: eventCenter,
+            meta: {
+                requireAuth: true // 不需要鉴权
+            }
+        }, {
+            path: '/addRace',
+            name: 'addRace',
+            component: addRace,
+            meta: {
+                requireAuth: true // 不需要鉴权
+            }
+        }, {
+            path: '/anliDetail',
+            name: 'anliDetail',
+            component: anliDetail,
+            meta: {
+                requireAuth: true // 不需要鉴权
+            }
+        }, {
+            path: '/demo',
+            name: 'demo',
+            component: demo,
+            meta: {
+                requireAuth: false // 不需要鉴权
+            }
+        }, {
+            path: '/anliList',
+            name: 'anliList',
+            component: anliList,
+            meta: {
+                requireAuth: true // 不需要鉴权
+            }
+        },
+        {
+            path: '/data',
+            name: 'data',
+            component: data,
+            meta: {
+                requireAuth: true // 不需要鉴权
+            }
+        },
+        {
+            path: '/notice',
+            name: 'notice',
+            component: notice,
+            meta: {
+                requireAuth: true // 不需要鉴权
+            }
+        },
+        {
+            path: '/score',
+            name: 'score',
+            component: score,
+            meta: {
+                requireAuth: true // 不需要鉴权
+            }
+        },
+        {
+            path: '/user',
+            name: 'user',
+            component: user,
+            meta: {
+                requireAuth: true // 不需要鉴权
+            }
+        }, {
+            path: '/school',
+            name: 'school',
+            component: school,
+            meta: {
+                requireAuth: true // 不需要鉴权
+            }
+        },
+    ]
 })
 
 router.beforeEach((to, from, next) => {