浏览代码

Merge branch 'beta' of https://git.cocorobo.cn/CocoRoboLabs/pbl-teacher-table into beta

zengyicheng 1 年之前
父节点
当前提交
6031c603f8

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.695ef6da9bc3990ec1a5eaa957814dd1.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.b01159b52abeac4e6216.js></script><script type=text/javascript src=./static/js/app.2b4e4a97e9d414c74e15.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.ff1e52cebb72fca96ed23c782b980938.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.b01159b52abeac4e6216.js></script><script type=text/javascript src=./static/js/app.bb235b86115dedcb520e.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

文件差异内容过多而无法显示
+ 0 - 0
dist/static/css/app.695ef6da9bc3990ec1a5eaa957814dd1.css


文件差异内容过多而无法显示
+ 0 - 0
dist/static/css/app.695ef6da9bc3990ec1a5eaa957814dd1.css.map


文件差异内容过多而无法显示
+ 0 - 0
dist/static/css/app.ff1e52cebb72fca96ed23c782b980938.css


文件差异内容过多而无法显示
+ 0 - 0
dist/static/css/app.ff1e52cebb72fca96ed23c782b980938.css.map


二进制
dist/static/img/icon_course_drag_active2.c14a724.png


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/app.2b4e4a97e9d414c74e15.js


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/app.bb235b86115dedcb520e.js


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/app.bb235b86115dedcb520e.js.map


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/manifest.3512a67a6213c2df4180.js.map


+ 2 - 1
src/App.vue

@@ -106,7 +106,8 @@ export default {
         "/teacherSource",
         "/grade",
         "/test",
-        "/testStudent"
+        "/testStudent",
+        "/checkToTest"
         // "/eventCenter",
         // "/addRace",
         // "/anliDetail",

二进制
src/assets/icon/new/icon_course_drag_active2.png


+ 218 - 52
src/components/pages/addCourse.vue

@@ -45,13 +45,13 @@
                 <div style="margin: 5px 10px 0 0; width: 2rem">
                   <img src="../../assets/icon/second.png" alt />
                 </div>
-                <div>选择课程模</div>
+                <div>选择课程模</div>
               </div>
               <div v-else-if="cidType === 0 && isStepDisplay" class="secondNo" @click="navSteps(2)">
                 <div>
                   <img src="../../assets/icon/secondNo.png" alt />
                 </div>
-                <div>选择课程模</div>
+                <div>选择课程模</div>
               </div>
               <div v-if="isStepDisplay" class="stepBorder" :class="{ 'border-active': steps > 2 }"></div>
               <div v-if="steps > 2 && isStepDisplay" class="third" @click="navSteps(3)">
@@ -496,10 +496,10 @@
                     </div> -->
                     <div v-for="(t, tIndex) in unitJson[unitIndex].chapterInfo[0]
                       .taskJson" :key="tIndex" :class="{
-                          dragOverTop: newIndex === tIndex && typeIndex == 'task-'+tIndex && oldIndex > tIndex,
-                          dragOverBottom: newIndex === tIndex && typeIndex == 'task-'+tIndex && oldIndex < tIndex,
+                          dragOverTop: newIndex === tIndex && typeIndex == 'task-'+tIndex && oldIndex > tIndex && dragType == 'task',
+                          dragOverBottom: newIndex === tIndex && typeIndex == 'task-'+tIndex && oldIndex < tIndex && dragType == 'task',
                         }">
-                      <div @dragstart="dragTaskStart(t, tIndex)" @dragover.prevent="dragTaskOver(tIndex)"
+                      <div @dragstart="dragTaskStart(t, tIndex, 0)" @dragover.prevent="dragTaskOver(tIndex, 0)"
                           @dragend="dragTaskEnd()" draggable @click="goToTask(tIndex)" class="navTask" :class="{
                         isNavTask:
                           isClickColor > 0 && isClickColor == tIndex + 1,
@@ -538,11 +538,19 @@
                     </div>
                   </div>
                   <div class="navBottom" v-if="courseState == 1">
-                    <div v-for="(stage, stageIndex) in unitJson" :key="stageIndex" class="stageBox" >
-                      <div @click="unitSet2(stageIndex)" class="navStage" :class="{
+                    <div v-for="(stage, stageIndex) in unitJson" :key="stageIndex" class="stageBox"  :class="{
+                          dragOverTop: newIndex === stageIndex && typeIndex == 'Unit-'+stageIndex && oldIndex > stageIndex && dragType == 'Unit',
+                          dragOverBottom: newIndex === stageIndex && typeIndex == 'Unit-'+stageIndex && oldIndex < stageIndex && dragType == 'Unit',
+                        }">
+                      <div  @dragstart="dragUnitStart(stage, stageIndex)" @dragover.prevent="dragUnitOver(stageIndex)"
+                          @dragend="dragUnitEnd()" draggable @click="unitSet2(stageIndex)" class="navStage" :class="{
                           isNavStage: stageIndex == unitIndex,
                           isNavStageOpen: stage.toolOpen
                       }">
+                          <div
+                          style="left: 8px;"
+                            class="chapter_upload_drag"
+                          ></div>
                           <div class="nt_taskBox">
                             <div class="nt_taskTitle">第{{ stageIndex + 1 }}阶段:</div>
                             <div class="nt_taskName">
@@ -554,17 +562,17 @@
                       </div>
                       <div v-for="(t, tIndex) in unitJson[stageIndex].chapterInfo[0]
                         .taskJson" :key="`${stageIndex}-${tIndex}`" :class="{
-                            dragOverTop: newIndex === tIndex && typeIndex == 'task-'+tIndex && oldIndex > tIndex && stageIndex == unitIndex,
-                            dragOverBottom: newIndex === tIndex && typeIndex == 'task-'+tIndex && oldIndex < tIndex && stageIndex == unitIndex,
+                            dragOverTop: newIndex === tIndex && typeIndex == 'task-'+tIndex && ((oldIndex > tIndex && stageIndex == checkUnitIndex) || (oldIndex == tIndex && stageIndex == checkUnitIndex && checkUnitIndex != oldUnitIndex)) && dragType == 'task',
+                            dragOverBottom: newIndex === tIndex && typeIndex == 'task-'+tIndex && oldIndex < tIndex && stageIndex == checkUnitIndex && dragType == 'task',
                           }" :style="{display:stage.toolOpen ? 'block' : 'none'}">
-                        <div @dragstart="dragTaskStart(t, tIndex)" @dragover.prevent="dragTaskOver(tIndex)"
+                        <div @dragstart="dragTaskStart(t, tIndex, stageIndex)" @dragover.prevent="dragTaskOver(tIndex, stageIndex)"
                             @dragend="dragTaskEnd()" draggable @click="goToTask2(tIndex, stageIndex)" class="navTask" :class="{
                           isNavTask:
                             isClickColor > 0 && isClickColor == tIndex + 1 && stageIndex == unitIndex,
                           isNavOpen: t.toolOpen
                         }">
                           <div
-                          style="left: 8px;"
+                          style="left: 12px;"
                             class="chapter_upload_drag"
                           ></div>
                           <div class="nt_taskBox">
@@ -637,7 +645,7 @@
                     <button class="c_pub_button_add pub_btn_paste_img" @click="pasteTask" v-if="steps == 3 && isPasteTask"
                       style="margin: 0 0 0 auto;">智能粘贴</button>
                     <button class="c_pub_button_confirm pub_btn_template_img" @click="openTemplate"
-                      :style="{margin: isPasteTask ? '0 0 0 20px' : '0 0 0 auto'}" style="padding:0 12px">选择课程模</button>
+                      :style="{margin: isPasteTask ? '0 0 0 20px' : '0 0 0 auto'}" style="padding:0 12px">选择课程模</button>
                   </div>
 
                   <div style="margin: 0 0 10px 0; padding: 0;" v-for="(item, index) in unitJson[unitIndex].chapterInfo"
@@ -667,6 +675,7 @@
                       :class="{ smallTaskBorder: itemTask.isFold === 1 }"
                       v-for="(itemTask, itemTaskIndex) in item.taskJson" :key="itemTaskIndex">
                       <div style="background: #fff;border-radius: 5px;">
+                        <div class="taskTitle">任务{{ itemTaskIndex + 1 }}</div>
                         <!-- padding: 20px; -->
                         <div v-if="unitJson[unitIndex].easy != 1">
                           <div :style="{
@@ -684,7 +693,7 @@
                               justify-content: flex-start;
                               align-items: center;
                             ">
-                              <div class="lineTitle">任务{{ itemTaskIndex + 1 }}概述</div>
+                              <div class="lineTitle">任务概述</div>
                             </div>
                             <div :id="'task' + itemTaskIndex" class="chapter_contentbox" style="
                           flex-direction: row;
@@ -706,12 +715,12 @@
                                 (!unitJson[unitIndex].easy ||
                                   unitJson[unitIndex].easy == 6)
                                 " @click="deleteTask(itemTaskIndex)"></div>
-                              <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && !itemTask.isFold2"
+                              <!-- <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && !itemTask.isFold2"
                                 class="show_taskD show" @click="fold2(itemTaskIndex)"><img
                                   src="../../assets/icon/new/icon-slide.png" />收起任务描述</div>
                               <div v-else-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1" class="show_taskD"
                                 @click="fold2(itemTaskIndex)"><img src="../../assets/icon/new/icon-slide.png" />展开任务描述
-                              </div>
+                              </div> -->
                             </div>
                             <!-- <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && itemTask.isFold2" style="
                           display: flex;
@@ -721,8 +730,8 @@
                           align-items: center;
                         ">
                               <div class="lineTitle">任务描述</div>
-                            </div> -->
-                            <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && !itemTask.isFold2"
+                            </div> && !itemTask.isFold2-->
+                            <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 "
                               style="margin-top: 20px;">
                               <editor-bar class="addEditor" style="margin: 0" placeholder="请输入任务描述" v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
                                 itemTaskIndex
@@ -753,13 +762,14 @@
                         align-items: center;
                       " :style="{ margin: !itemTask.isFoldchapter ? '20px 0 10px' : '20px 0 0' }">
                             <div style="margin-bottom:10px" class="lineTitle clineTitle">学习内容</div>
-                            <div style="margin-bottom:10px" v-if="!itemTask.isFoldchapter" class="show_taskD show"
+                            <!-- <div style="margin-bottom:10px" v-if="!itemTask.isFoldchapter" class="show_taskD show"
                               @click="foldC(itemTaskIndex)"><img src="../../assets/icon/new/icon-slide.png" />收起学习内容</div>
                             <div style="margin-bottom:10px" v-else class="show_taskD" @click="foldC(itemTaskIndex)"><img
-                                src="../../assets/icon/new/icon-slide.png" />展开学习内容</div>
+                                src="../../assets/icon/new/icon-slide.png" />展开学习内容</div> -->
                             <!-- <div class="line"></div> -->
                           </div>
-                          <div v-if="!itemTask.isFoldchapter">
+                          <!-- v-if="!itemTask.isFoldchapter" -->
+                          <div>
                             <div class="add_chapters_box add_c_none" v-if="itemTask.chapterData &&
                               itemTask.chapterData.length == 0
                               "><img src="../../assets/icon/new/c_none.png" alt /><span>请添加学习内容</span></div>
@@ -775,8 +785,8 @@
                                     item1.type
                                   )
                                   " :class="{
-                                dragOverTop2: newIndex === index1 && typeIndex == 'chapter-'+itemTaskIndex+'-'+index1 && oldIndex > index1,
-                                dragOverBottom2: newIndex === index1 && typeIndex == 'chapter-'+itemTaskIndex+'-'+index1 && oldIndex < index1,
+                                dragOverTop2: newIndex === index1 && typeIndex == 'chapter-'+itemTaskIndex+'-'+index1 && oldIndex > index1 && dragType == 'drag',
+                                dragOverBottom2: newIndex === index1 && typeIndex == 'chapter-'+itemTaskIndex+'-'+index1 && oldIndex < index1 && dragType == 'drag',
                               }">
                                 <div class="chapter_upload_drag"></div>
                                 <div class="chapter_upload_o" style="
@@ -917,7 +927,8 @@
                               </div>
                             </div>
                           </div>
-                          <div class="add_info_box" style="margin: 10px 0 0" v-if="!itemTask.isFoldchapter">
+                          <!-- v-if="!itemTask.isFoldchapter" -->
+                          <div class="add_info_box" style="margin: 10px 0 0">
                             <button class="c_pub_button_add pub_btn_add_img" @click="addImg($event)">
                               文件
                               <input type="file" accept="*" style="display: none" v-if="inputShow" @change="
@@ -1318,7 +1329,7 @@
                               其他
                             </div> -->
                                 </div>
-                                <div class="chapter_upload_ud2" style="z-index: 9;margin:0 0 0 auto" v-if="itemTask.toolChoose.length > 1">
+                                <div class="chapter_upload_ud2" style="z-index: 9;margin:0 0 0 auto" :style="{ margin: itemTask.toolChoose.length > 1 ? '0px 35px 0px auto' : '0 0 0 auto' }" v-if="itemTask.toolChoose.length > 1">
                                   <div class="chapter_upload_up2" @click.stop="
                                       upTool(
                                         $event,
@@ -1336,18 +1347,18 @@
                                       )
                                   ">下移</div>
                               </div>
-                              <div v-if="!itemTool.isFold3" class="show_toolD show"
+                              <!-- <div v-if="!itemTool.isFold3" class="show_toolD show"
                                 @click="fold3(itemTaskIndex, toolIndex)"
                                 :style="{ margin: itemTask.toolChoose.length > 1 ? '0px 35px 0px 10px' : '0 0 0 auto' }"><img
                                   src="../../assets/icon/new/icon-slide.png" />收起工具栏</div>
                               <div v-else class="show_toolD" @click="fold3(itemTaskIndex, toolIndex)"
                                 :style="{ margin: itemTask.toolChoose.length > 1 ? '0px 35px 0px 10px' : '0 0 0 auto' }"><img
-                                  src="../../assets/icon/new/icon-slide.png" />展开工具栏</div>
+                                  src="../../assets/icon/new/icon-slide.png" />展开工具栏</div> -->
                               <div class="remove" @click="deleteTool(itemTaskIndex, toolIndex)"
                                 v-if="itemTask.toolChoose.length > 1" style="position: absolute; right: 0;top:-5px;"></div>
                               </div>
-
-                              <div style="min-height: 163px" v-show="!itemTool.isFold3">
+                              <!-- v-show="!itemTool.isFold3" -->
+                              <div style="min-height: 163px">
                                 <div class="toolSort" v-if="itemTool.toolType == 0">
                                   <!-- <div class="tool">
                               <div
@@ -2212,7 +2223,8 @@
                             </div> -->
                                 </div>
                               </div>
-                              <div v-show="!itemTool.isFold3">
+                              <!-- v-show="!itemTool.isFold3" -->
+                              <div>
                                 <textarea rows="2" v-autoHeight="70" type="text" placeholder="添加工具描述" class="binfo_input"
                                   style="margin: 0 0 20px 0; width: 100% !important"
                                   v-model="itemTool.toolDetail"></textarea>
@@ -3781,7 +3793,7 @@
         <el-button type="primary" @click="addEnglish">确 定</el-button>
       </span>
     </el-dialog>
-    <el-dialog title="选择课程模" :visible.sync="templateDialog" :append-to-body="true" width="630px"
+    <el-dialog title="选择课程模" :visible.sync="templateDialog" :append-to-body="true" width="630px"
       :before-close="handleClose" class="dialog_diy">
       <div class="template_box">
         <div class="wordTeacher" v-for="(aa, indexF) in templateArray" :key="indexF" @click="checkctJson(aa)" :class="{wordTeacherA:ctJson.id == aa.id}">
@@ -4040,7 +4052,7 @@ export default {
                   ],
                   isShowTools: false,
                   askCount: 1,
-                  isFold: 0,
+                  isFold: 1,
                   askTitle: "",
                   askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                   checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -4122,11 +4134,42 @@ export default {
       ppage: 1,
       toolsData: toolsData,
       oldIndex: 0,
+      dragType:'',
+      oldUnitIndex: 0,
       oldData: null,
       newIndex: "",
       englishList:{},
       typeIndex: "",
       courseState: 2,
+      taskJSONa: [
+                    {
+                      task: "",
+                      taskDetail: "",
+                      chapterData: [],
+                      toolText: "",
+                      toolChoose: [
+                        {
+                          tool: [],
+                          toolDetail: "",
+                          toolType: 0,
+                          askCount: 1,
+                          askTitle: "",
+                          askJson: [
+                            { askstitle: "", askItem: 1, checkList: [] },
+                          ],
+                        },
+                      ],
+                      isShowTools: false,
+                      askCount: 1,
+                      isFold: 1,
+                      askTitle: "",
+                      askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
+                      checkJson: [{ checkCount: [], checkPerent: [] }],
+                      homeworkList: [],
+                    },
+                  ],
+        checkUnitIndex: 0,
+      
     };
   },
   directives: {
@@ -5034,12 +5077,17 @@ export default {
             message: "删除成功",
             type: "success",
           });
+          let task = JSON.parse(JSON.stringify(this.unitJson[this.unitIndex].chapterInfo[0].taskJson))
           this.unitJson.splice(this.unitIndex, 1);
           if(this.unitIndex == 0){
             this.unitIndex = 0;
           }else{
             this.unitIndex = this.unitIndex - 1;
           }
+
+          if(JSON.stringify(task) != JSON.stringify(this.taskJSONa)){
+            this.unitJson[this.unitIndex].chapterInfo[0].taskJson = [...this.unitJson[this.unitIndex].chapterInfo[0].taskJson, ...task]
+          }
         })
         .catch((err) => {
           this.$message.error("网络不佳");
@@ -6012,7 +6060,7 @@ export default {
                 ],
                 isShowTools: false,
                 askCount: 1,
-                isFold: 0,
+                isFold: 1,
                 askTitle: "",
                 askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                 checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -6796,7 +6844,7 @@ export default {
                       ],
                       isShowTools: false,
                       askCount: 1,
-                      isFold: 0,
+                      isFold: 1,
                       askTitle: "",
                       askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                       checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -6853,7 +6901,7 @@ export default {
                     ],
                     isShowTools: false,
                     askCount: 1,
-                    isFold: 0,
+                    isFold: 1,
                     askTitle: "",
                     askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                     checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -6964,7 +7012,7 @@ export default {
                       ],
                       isShowTools: false,
                       askCount: 1,
-                      isFold: 0,
+                      isFold: 1,
                       askTitle: "",
                       askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                       checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -7034,7 +7082,7 @@ export default {
                       ],
                       isShowTools: false,
                       askCount: 1,
-                      isFold: 0,
+                      isFold: 1,
                       askTitle: "",
                       askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                       checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -8175,7 +8223,7 @@ export default {
           ],
           isShowTools: false,
           askCount: 1,
-          isFold: 0,
+          isFold: 1,
           askTitle: "",
           askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
           checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -8225,7 +8273,7 @@ export default {
                   ],
                   isShowTools: false,
                   askCount: 1,
-                  isFold: 0,
+                  isFold: 1,
                   askTitle: "",
                   askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                   checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -9760,7 +9808,7 @@ export default {
     },
     dragStart(val, i, j) {
       console.log(this.taskCount);
-
+      this.dragType = 'drag'
       this.taskCount = j
       this.oldIndex = i;
       this.oldData = val;
@@ -9770,6 +9818,12 @@ export default {
       this.newIndex = i;
     },
     dragEnd() {
+      if(this.dragType != 'drag'){
+        this.typeIndex = "";
+        this.newIndex = "";
+        this.dragType = "";
+        return;
+      }
       console.log(this.taskCount);
 
       let newItems = [...this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount].chapterData];
@@ -9780,20 +9834,33 @@ export default {
       this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount].chapterData = [...newItems];
       this.typeIndex = "";
       this.newIndex = "";
+      this.dragType = "";
       this.$forceUpdate()
     },
-    dragTaskStart(val, i) {
+    dragTaskStart(val, i, j) {
+      this.dragType = 'task'
       this.oldIndex = i;
       this.oldData = val;
+      this.oldUnitIndex = j;
     },
-    dragTaskOver(i) {
+    dragTaskOver(i, j) {
       this.typeIndex = "task-" + i
       this.newIndex = i;
+      this.checkUnitIndex = j;
     },
     dragTaskEnd() {
-      if(this.newIndex == this.oldIndex){
+      if(this.dragType != 'task'){
+        this.newIndex = "";
+        this.dragType = "";
+        this.typeIndex = "";
+        this.checkUnitIndex = "";
+        return;
+      }
+      if((this.newIndex == this.oldIndex && this.oldUnitIndex == this.checkUnitIndex)){
         this.newIndex = "";
+        this.dragType = "";
         this.typeIndex = "";
+        this.checkUnitIndex = "";
         return;
       }
       this.$confirm(
@@ -9806,18 +9873,85 @@ export default {
         }
       )
         .then(() => {
-          let newItems = [...this.unitJson[this.unitIndex].chapterInfo[0].taskJson];
-          // 删除老的节点
+          if(this.oldUnitIndex != this.checkUnitIndex){
+            let newItems = [...this.unitJson[this.oldUnitIndex].chapterInfo[0].taskJson];
+            // 删除老的节点
+            newItems.splice(this.oldIndex, 1);
+            // 在列表中目标位置增加新的节点
+            let newItems2 = [...this.unitJson[this.checkUnitIndex].chapterInfo[0].taskJson];
+            newItems2.splice(this.newIndex, 0, this.oldData);
+            this.unitJson[this.oldUnitIndex].chapterInfo[0].taskJson = [...newItems];
+            this.unitJson[this.checkUnitIndex].chapterInfo[0].taskJson = [...newItems2];
+          }else{
+            let newItems = [...this.unitJson[this.oldUnitIndex].chapterInfo[0].taskJson];
+            // 删除老的节点
+            newItems.splice(this.oldIndex, 1);
+            // 在列表中目标位置增加新的节点
+            newItems.splice(this.newIndex, 0, this.oldData);
+            this.unitJson[this.oldUnitIndex].chapterInfo[0].taskJson = [...newItems];
+          }
+          this.typeIndex = "";
+          this.newIndex = "";
+          this.dragType = "";
+          this.checkUnitIndex = "";
+          this.updateWork();
+          this.$forceUpdate()
+        })
+        .catch(() => {
+          this.newIndex = "";
+          this.dragType = "";
+          this.typeIndex = "";
+          this.checkUnitIndex = "";
+          return;
+        });
+    },
+    dragUnitStart(val, i) {
+      this.dragType = 'Unit'
+      this.oldIndex = i;
+      this.oldData = val;
+    },
+    dragUnitOver(i, j) {
+      this.typeIndex = "Unit-" + i
+      this.newIndex = i;
+    },
+    dragUnitEnd() {
+      if(this.dragType != 'Unit'){
+        this.newIndex = "";
+        this.dragType = "";
+        this.typeIndex = "";
+        return;
+      }
+      if(this.newIndex == this.oldIndex){
+        this.newIndex = "";
+        this.dragType = "";
+        this.typeIndex = "";
+        return;
+      }
+      this.$confirm(
+        "切换阶段顺序将删除所有工具的提交成果,是否继续此操作?",
+        "提示",
+        {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning",
+        }
+      )
+        .then(() => {
+          let newItems = [...this.unitJson];
+            // 删除老的节点
           newItems.splice(this.oldIndex, 1);
           // 在列表中目标位置增加新的节点
           newItems.splice(this.newIndex, 0, this.oldData);
-          this.unitJson[this.unitIndex].chapterInfo[0].taskJson = [...newItems];
+          this.unitJson = [...newItems];
           this.typeIndex = "";
           this.newIndex = "";
+          this.dragType = "";
+          this.updateWork();
           this.$forceUpdate()
         })
         .catch(() => {
           this.newIndex = "";
+          this.dragType = "";
           this.typeIndex = "";
           return;
         });
@@ -10950,6 +11084,10 @@ export default {
   z-index: 10;
 }
 
+.isNavStage > .chapter_upload_drag{
+  background-image: url("../../assets/icon/new/icon_course_drag_active2.png");
+}
+
 .chapter_upload_t {
   background-color: #fff;
   position: absolute;
@@ -11967,8 +12105,8 @@ ol {
 }
 
 .smallTaskBorder {
-  height: 280px;
-  min-height: 280px !important;
+  height: 405px;
+  min-height: 405px !important;
   overflow: hidden;
 }
 
@@ -13142,6 +13280,7 @@ ol {
   /* background: #6b91b7; */
   height: 100%;
   overflow: auto;
+  padding: 10px 0;
 }
 
 .navStage {
@@ -13153,7 +13292,7 @@ ol {
   cursor: pointer;
   background: #ffffff;
   width: 95%;
-  margin: 10px auto 0;
+  margin: 5px auto 5px;
   box-sizing: border-box;
   border-radius: 5px;
   flex-wrap: wrap;
@@ -13167,7 +13306,7 @@ ol {
   height: 16px;
   background-image: url(../../assets/icon/new/icon_stage.png);
   background-size: 100%;
-  margin-left: 10px;
+  margin-left: 25px;
 }
 
 .navStage::after {
@@ -13210,7 +13349,7 @@ ol {
 
 
 .navStage .nt_taskBox {
-  width: calc(100% - 53px);
+  width: calc(100% - 68px);
   padding: 0 0 0 5px;
   box-sizing: border-box;
   box-sizing: border-box;
@@ -13245,7 +13384,7 @@ ol {
   cursor: pointer;
   background: #ffffff;
   width: 95%;
-  margin: 10px auto 0;
+  margin: 5px auto 5px;
   box-sizing: border-box;
   border-radius: 5px;
   flex-wrap: wrap;
@@ -13268,7 +13407,17 @@ ol {
 }
 
 .isNavOpen::before {
+  /* background-image: url(../../assets/icon/new/icon_arrow_a.png) !important; */
+  transform: rotate(90deg);
+}
+
+.isNavTask::before {
   background-image: url(../../assets/icon/new/icon_arrow_a.png) !important;
+  transform: rotate(-90deg);
+}
+
+.isNavTask.isNavOpen::before{
+  transform: rotate(0deg);
 }
 
 .dragOverTop {
@@ -13862,4 +14011,21 @@ ol {
 .class_item>>>.el-checkbox__input {
   display: flex;
   align-items: center;
-}</style>
+}
+.taskTitle{
+  font-size: 20px;
+  font-weight: bold;
+  margin-bottom: 35px;
+}
+
+.taskTitle:after{
+  content: '';
+  width: 100%;
+  display: block;
+  height: 1px;
+  background: #CAD1DC;
+  position: absolute;
+  left: 0;
+  margin: 15px 0 0;
+}
+</style>

+ 2 - 2
src/components/pages/addCoursejiu.vue

@@ -45,13 +45,13 @@
                 <div style="margin: 5px 10px 0 0; width: 2rem">
                   <img src="../../assets/icon/second.png" alt />
                 </div>
-                <div>选择课程模</div>
+                <div>选择课程模</div>
               </div>
               <div v-else-if="cidType === 0 && isStepDisplay" class="secondNo" @click="navSteps(2)">
                 <div>
                   <img src="../../assets/icon/secondNo.png" alt />
                 </div>
-                <div>选择课程模</div>
+                <div>选择课程模</div>
               </div>
               <div v-if="isStepDisplay" class="stepBorder" :class="{ 'border-active': steps > 2 }"></div>
               <div v-if="steps > 2 && isStepDisplay" class="third" @click="navSteps(3)">

+ 96 - 40
src/components/pages/easy/addCourse.vue

@@ -212,7 +212,7 @@
                 <div class="basic_box2">
                   <div style="margin: 0 0 20px 0; padding: 0 0 0 10px"
                     v-for="(item, index) in unitJson[unitIndex].chapterInfo" :key="index">
-                    <div class="taskBorder" style="padding: 20px 20px 10px;">
+                    <div class="taskBorder" style="padding: 20px 20px 10px;" >
                       <div class="basic_box" style="
                           margin: 0;
                           min-height: 0;
@@ -226,12 +226,13 @@
                             align-items: center;
                           ">
                           <div class="lineTitle" style="margin-bottom:10px">学习内容</div>
-                          <div style="margin-bottom:10px" v-if="!item.taskJson[0].isFoldchapter" class="show_taskD show"
+                          <!-- <div style="margin-bottom:10px" v-if="!item.taskJson[0].isFoldchapter" class="show_taskD show"
                             @click="foldC(0)"><img src="../../../assets/icon/new/icon-slide.png" />收起学习内容</div>
                           <div style="margin-bottom:10px" v-else class="show_taskD" @click="foldC(0)"><img
-                              src="../../../assets/icon/new/icon-slide.png" />展开学习内容</div>
+                              src="../../../assets/icon/new/icon-slide.png" />展开学习内容</div> -->
                         </div>
-                        <div v-if="!item.taskJson[0].isFoldchapter">
+                        <!-- v-if="!item.taskJson[0].isFoldchapter" -->
+                        <div>
                           <div class="add_chapters_box add_c_none" v-if="item.taskJson[0].chapterData &&
                             item.taskJson[0].chapterData.length == 0
                             "><img src="../../../assets/icon/new/c_none.png" alt /><span>请添加学习内容</span></div>
@@ -387,7 +388,8 @@
                             </div>
                           </div>
                         </div>
-                        <div class="add_info_box" style="margin:10px 0 0" v-if="!item.taskJson[0].isFoldchapter">
+                        <!-- v-if="!item.taskJson[0].isFoldchapter" -->
+                        <div class="add_info_box" style="margin:10px 0 0">
                             <button class="c_pub_button_add pub_btn_add_img" @click="addImg($event)">
                               文件
                               <input type="file" accept="*" style="display: none" v-if="inputShow"
@@ -443,8 +445,9 @@
                       </div>
                     </div>
                     <div class="taskBorder" :style="{
-                      minHeight: unitJson[unitIndex].easy && 'unset',
-                    }" v-for="(itemTask, itemTaskIndex) in item.taskJson" :key="itemTaskIndex">
+                      minHeight: unitJson[unitIndex].easy && 'unset', paddingBottom: '40px'
+                    }" :class="{ smallTaskBorder: itemTask.isFold === 1 }" v-for="(itemTask, itemTaskIndex) in item.taskJson" :key="itemTaskIndex">
+                      <div class="taskTitle">任务{{ itemTaskIndex + 1 }}</div>
                       <div v-if="unitJson[unitIndex].easy != 1">
                         <div :style="{
                           marginBottom:
@@ -461,7 +464,7 @@
                               justify-content: flex-start;
                               align-items: center;
                             ">
-                            <div class="lineTitle">任务{{ itemTaskIndex + 1 }}概述</div>
+                            <div class="lineTitle">任务概述</div>
                           </div>
                           <div :id="'task' + itemTaskIndex" class="chapter_contentbox" style="
                               flex-direction: row;
@@ -477,16 +480,17 @@
                                   itemTaskIndex
                                 ].task
                                   " />
-                              <div v-if="!itemTask.isFold2" class="show_taskD show" @click="fold2(itemTaskIndex)"><img
+                              <!-- <div v-if="!itemTask.isFold2" class="show_taskD show" @click="fold2(itemTaskIndex)"><img
                                   src="../../../assets/icon/new/icon-slide.png" />收起任务描述</div>
                               <div v-else class="show_taskD" @click="fold2(itemTaskIndex)"><img
-                                  src="../../../assets/icon/new/icon-slide.png" />展开任务描述</div>
+                                  src="../../../assets/icon/new/icon-slide.png" />展开任务描述</div> -->
                             </div>
                             <div class="remove" v-if="item.taskJson.length > 1" @click="deleteTask(itemTaskIndex)"></div>
                           </div>
                         </div>
                       </div>
-                      <div style="margin: 25px 0" v-if="!itemTask.isFold2">
+                      <div style="margin: 25px 0"> 
+                         <!-- v-if="!itemTask.isFold2" -->
                         <!-- <editor-bar style="width: 90% !important; margin: 0" placeholder="请输入任务描述" v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
                           itemTaskIndex
                         ].taskDetail
@@ -567,7 +571,7 @@
                                   其他
                                 </div> -->
                               </div>
-                              <div class="chapter_upload_ud2" style="z-index: 9;margin:0 0 0 auto" v-if="itemTask.toolChoose.length > 1">
+                              <div class="chapter_upload_ud2" style="z-index: 9;margin:0 0 0 auto" :style="{ margin: itemTask.toolChoose.length > 1 ? '0px 35px 0px auto' : '0 0 0 auto' }" v-if="itemTask.toolChoose.length > 1">
                                   <div class="chapter_upload_up2" @click.stop="
                                       upTool(
                                         $event,
@@ -585,17 +589,18 @@
                                       )
                                   ">下移</div>
                               </div>
-                              <div v-if="!itemTool.isFold3" class="show_toolD show"
+                              <!-- <div v-if="!itemTool.isFold3" class="show_toolD show"
                                 @click="fold3(itemTaskIndex, toolIndex)"
                                 :style="{ margin: itemTask.toolChoose.length > 1 ? '0px 35px 0px 10px' : '0 0 0 auto' }"><img
                                   src="../../../assets/icon/new/icon-slide.png" />收起工具栏</div>
                               <div v-else class="show_toolD" @click="fold3(itemTaskIndex, toolIndex)"
                                 :style="{ margin: itemTask.toolChoose.length > 1 ? '0px 35px 0px 10px' : '0 0 0 auto' }"><img
-                                  src="../../../assets/icon/new/icon-slide.png" />展开工具栏</div>
+                                  src="../../../assets/icon/new/icon-slide.png" />展开工具栏</div> -->
                               <div class="remove" @click="deleteTool(itemTaskIndex, toolIndex)"
                                 v-if="itemTask.toolChoose.length > 1" style="position: absolute; right: 0;top:-5px;"></div>
                             </div>
-                            <div style="min-height: 163px" v-show="!itemTool.isFold3">
+                            <!-- v-show="!itemTool.isFold3" -->
+                            <div style="min-height: 163px" >
                               <div class="toolSort" v-if="itemTool.toolType == 0">
                                 <!-- <div class="tool">
                               <div
@@ -1679,7 +1684,8 @@
                             </div> -->
                               </div>
                             </div>
-                            <div v-show="!itemTool.isFold3">
+                            <!-- v-show="!itemTool.isFold3" -->
+                            <div>
                               <textarea rows="3" type="text" v-autoHeight="87" placeholder="添加工具描述" class="binfo_input"
                                 style="
                                   margin: 0 0 20px 0;
@@ -1698,6 +1704,17 @@
                           </button>
                         </div>
                       </div>
+                      <div class="funBlock" style="padding: 0">
+                        <div class="fold" @click="fold(itemTaskIndex, $event)">
+                          <div
+                            class="arrow"
+                            :class="{ arrowZ: !(itemTask.isFold === 1) }"
+                          ></div>
+                          <div>
+                            {{ itemTask.isFold === 1 ? "展开任务" : "收起任务" }}
+                          </div>
+                        </div>
+                      </div>
                     </div>
                     <div class="addTaskBorder" v-if="!unitJson[unitIndex].easy">
                       <!-- <div>
@@ -4769,7 +4786,7 @@ export default {
                   toolText: "",
                   isShowTools: false,
                   askCount: 1,
-                  isFold: 0,
+                  isFold: 1,
                   askTitle: "",
                   askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                   checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -6402,7 +6419,7 @@ export default {
                 ],
                 isShowTools: false,
                 askCount: 1,
-                isFold: 0,
+                isFold: 1,
                 askTitle: "",
                 askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                 checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -6455,7 +6472,7 @@ export default {
         toolText: "",
         isShowTools: false,
         askCount: 1,
-        isFold: 0,
+        isFold: 1,
         askTitle: "",
         askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
         checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -6467,16 +6484,10 @@ export default {
       el.getElementsByTagName("input")[0].click();
     },
     fold(i, e, type) {
-      var a = e.currentTarget.parentElement.parentElement;
-      var b = e.currentTarget.parentElement;
-      if (type == 1) {
+      if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold == 0) {
         this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 1;
-        a.className += " smallTaskBorder";
-        b.className += " funBlockTop";
       } else {
         this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 0;
-        a.className = "taskBorder";
-        b.className = "funBlock";
       }
       console.log(e);
     },
@@ -7170,7 +7181,7 @@ export default {
                       ],
                       isShowTools: false,
                       askCount: 1,
-                      isFold: 0,
+                      isFold: 1,
                       askTitle: "",
                       askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                       checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -7234,7 +7245,7 @@ export default {
                       ],
                       isShowTools: false,
                       askCount: 1,
-                      isFold: 0,
+                      isFold: 1,
                       askTitle: "",
                       askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                       checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -8395,7 +8406,7 @@ export default {
           ],
           isShowTools: false,
           askCount: 1,
-          isFold: 0,
+          isFold: 1,
           askTitle: "",
           askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
           checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -8445,7 +8456,7 @@ export default {
                   ],
                   isShowTools: false,
                   askCount: 1,
-                  isFold: 0,
+                  isFold: 1,
                   askTitle: "",
                   askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
                   checkJson: [{ checkCount: [], checkPerent: [] }],
@@ -11980,8 +11991,8 @@ ol {
 }
 
 .smallTaskBorder {
-  height: 170px;
-  min-height: 170px !important;
+  height: 340px;
+  min-height: 340px !important;
   overflow: hidden;
 }
 
@@ -12024,28 +12035,46 @@ ol {
   display: flex;
   padding: 15px 0;
   flex-direction: row;
-  justify-content: flex-end;
+  justify-content: center;
   align-items: center;
   position: absolute;
-  right: 15px;
-  bottom: 35px;
+  right: 0;
+  bottom: 0;
+  background: #fff;
+  width: 100%;
+  height: 60px;
   z-index: 9;
 }
 
 .fold {
   display: flex;
-  margin: 0 10px;
+  margin: 0 20px;
   flex-direction: row;
   align-items: center;
   cursor: pointer;
+  color: #2b7bff;
 }
 
 .arrow {
-  width: 15px;
-  height: 15px;
-  margin-left: 10px;
+  margin-right: 8px;
+  width: 16px;
+  height: 16px;
+  min-width: 16px;
+  min-height: 16px;
+  background-size: 100% 100%;
+  display: block;
+  background-image: url(../../../assets/icon/new/u_up.png);
+  /* border-left: 7px solid transparent;
+  border-bottom: 7px solid #717C8D;
+  border-top: 0px solid transparent;
+  border-right: 7px solid transparent; */
+  /* box-sizing: border-box; */
+  transition: all .3s;
 }
 
+.arrowZ {
+  transform: rotate(180deg);
+}
 .addToolFun {
   display: flex;
   width: 150px;
@@ -13164,7 +13193,17 @@ ol {
 }
 
 .isNavOpen::before {
+  /* background-image: url(../../assets/icon/new/icon_arrow_a.png) !important; */
+  transform: rotate(90deg);
+}
+
+.isNavTask::before {
   background-image: url(../../../assets/icon/new/icon_arrow_a.png) !important;
+  transform: rotate(-90deg);
+}
+
+.isNavTask.isNavOpen::before{
+  transform: rotate(0deg);
 }
 
 .dragOverTop {
@@ -13704,4 +13743,21 @@ ol {
 .class_item>>>.el-checkbox__input {
   display: flex;
   align-items: center;
-}</style>
+}
+.taskTitle{
+  font-size: 20px;
+  font-weight: bold;
+  margin-bottom: 35px;
+}
+
+.taskTitle:after{
+  content: '';
+  width: 100%;
+  display: block;
+  height: 1px;
+  background: #CAD1DC;
+  position: absolute;
+  left: 0;
+  margin: 15px 0 0;
+}
+</style>

文件差异内容过多而无法显示
+ 736 - 318
src/components/pages/task/addCourse.vue


+ 223 - 0
src/components/pages/test/check/check.vue

@@ -0,0 +1,223 @@
+<template>
+  <div class="pb_content" style="background: #f0f2f5" v-loading="loading">
+    <div class="pb_content_body" style="position: relative; margin: 0">
+      <div class="right">
+        <div class="courseTop">
+          <div class="stepsNav">
+            <el-breadcrumb separator-class="el-icon-arrow-right">
+              <el-breadcrumb-item
+                :to="{
+                  path:
+                    '/test?userid=' +
+                    userid +
+                    '&oid=' +
+                    oid +
+                    '&org=' +
+                    org +
+                    '&role=' +
+                    role,
+                }"
+                >评测管理</el-breadcrumb-item
+              >
+              <el-breadcrumb-item
+                :to="{
+                  path:
+                    '/checkToTest?cid=' +
+                    cid +
+                    '&userid=' +
+                    userid +
+                    '&oid=' +
+                    oid +
+                    '&org=' +
+                    org +
+                    '&role=' +
+                    role,
+                }"
+              >
+                查看评测
+              </el-breadcrumb-item>
+              <el-breadcrumb-item>
+                <span style="color: rgb(15, 126, 255)">{{ name }}</span>
+              </el-breadcrumb-item>
+            </el-breadcrumb>
+          </div>
+          <div class="r_pub_button_retrun" @click="retrunCourse">返回</div>
+        </div>
+        <div class="step_box">
+          <div class="edit_top">
+            <div class="op_btn"></div>
+          </div>
+          <topicVue :cJson="cJson" :title="title" :checktype="2"></topicVue>
+        </div>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+import topicVue from "../../testStudent/view/component/topic.vue";
+export default {
+  components: {
+    topicVue,
+  },
+  data() {
+    return {
+      userid: this.$route.query.userid,
+      userid2: this.$route.query.userid2,
+      oid: this.$route.query.oid,
+      org: this.$route.query.org,
+      role: this.$route.query.role,
+      cid: this.$route.query.cid,
+      steps: 1,
+      title: "",
+      testType: [],
+      see: false,
+      cJson: [],
+      loading: false,
+      look: "",
+      name: "",
+    };
+  },
+  methods: {
+    retrunCourse() {
+      this.goTo(
+        "/checkToTest?cid=" +
+          this.cid +
+          "&userid=" +
+          this.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&role=" +
+          this.role
+      );
+    },
+    goTo(path) {
+      this.$router.push(path);
+    },
+
+    getData() {
+      this.loading = true;
+      let params = {
+        cid: this.cid,
+        uid: this.userid2,
+      };
+      this.ajax
+        .get(this.$store.state.api + "getTestWorks", params)
+        .then((res) => {
+          // this.cJson = JSON.parse(res.data[0][0].chapters);
+          this.$forceUpdate();
+          this.title = res.data[0][0].title;
+
+          this.testType = [];
+          for (var i = 0; i < res.data[1].length; i++) {
+            this.testType.push(res.data[1][i].typeid);
+          }
+          console.log(this.testType);
+          this.look = res.data[0][0].look;
+
+          this.cJson = JSON.parse(res.data[2][0].courseJson);
+          this.name = res.data[2][0].username;
+          this.loading = false;
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    publish() {
+      let params = [
+        {
+          uid: this.userid,
+          cid: this.cid,
+          cjson: JSON.stringify(this.cJson),
+          type: "2",
+        },
+      ];
+      this.ajax
+        .post(this.$store.state.api + "addTestWorks", params)
+        .then((res) => {
+          this.$message.success("提交成功");
+          this.goTo(
+            "/testStudent?userid=" +
+              this.userid +
+              "&oid=" +
+              this.oid +
+              "&org=" +
+              this.org +
+              "&role=" +
+              this.role
+          );
+        })
+        .catch((err) => {
+          this.$message.error("网络不佳");
+          console.error(err);
+        });
+    },
+  },
+  mounted() {
+    this.getData();
+  },
+};
+</script>
+
+<style scoped>
+.pb_content {
+  height: 100% !important;
+  /* margin: 0 20px 0 20px; */
+}
+
+.pb_content_body {
+  width: 100% !important;
+  height: 100%;
+}
+
+.right {
+  height: 100%;
+  width: 100%;
+  display: flex;
+  overflow: hidden;
+  flex-direction: column;
+}
+
+.basic_box {
+  margin: 0 auto;
+  position: relative;
+  padding: 0 20px 0 20px;
+}
+
+.courseTop {
+  display: flex;
+  flex-direction: row;
+  justify-content: space-between;
+  align-items: center;
+  width: calc(100% - 40px);
+  margin: 0 auto;
+  padding: 10px 0;
+}
+
+.stepsNav {
+  display: flex;
+  flex-direction: row;
+  justify-content: flex-start;
+  align-items: center;
+}
+
+.step_box {
+  width: calc(100%);
+  margin: 0 auto;
+  height: calc(100% - 38px);
+}
+
+.edit_top {
+  height: 50px;
+  background: #fff;
+  display: flex;
+  align-items: center;
+  justify-content: flex-end;
+  position: relative;
+  padding: 0 30px;
+  border-top: 2px solid #eee;
+  border-bottom: 2px solid #eee;
+}
+</style>

+ 255 - 0
src/components/pages/test/check/index.vue

@@ -0,0 +1,255 @@
+<template>
+  <div class="pb_content" style="background: #fff" v-loading="loading">
+    <div class="pb_content_body" style="position: relative; margin: 0">
+      <div class="right">
+        <div class="courseTop">
+          <div class="stepsNav">
+            <el-breadcrumb separator-class="el-icon-arrow-right">
+              <el-breadcrumb-item
+                :to="{
+                  path:
+                    '/test?userid=' +
+                    userid +
+                    '&oid=' +
+                    oid +
+                    '&org=' +
+                    org +
+                    '&role=' +
+                    role,
+                }"
+                >评测管理</el-breadcrumb-item
+              >
+              <el-breadcrumb-item>
+                <span style="color: rgb(15, 126, 255)">查看评测</span>
+              </el-breadcrumb-item>
+            </el-breadcrumb>
+          </div>
+          <div class="r_pub_button_retrun" @click="retrunCourse">返回</div>
+        </div>
+        <div class="step_box" ref="stepBox">
+          <div class="pb_content_body">
+            <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
+                  prop="username"
+                  label="提交人"
+                  min-width="15"
+                  align="center"
+                >
+                </el-table-column>
+                <el-table-column
+                  prop="time"
+                  label="提交时间"
+                  min-width="15"
+                  align="center"
+                >
+                </el-table-column>
+                <el-table-column label="操作" width="200px">
+                  <template slot-scope="scope">
+                    <el-button
+                      @click="getTest(scope.row)"
+                      type="primary"
+                      size="small"
+                      >查看</el-button
+                    >
+                  </template>
+                </el-table-column>
+              </el-table>
+            </div>
+            <div class="student_page">
+              <el-pagination
+                background
+                layout="prev, pager, next"
+                :page-size="pageSize"
+                :total="total"
+                @current-change="handleCurrentChange"
+              >
+              </el-pagination>
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+  components: {},
+  data() {
+    return {
+      userid: this.$route.query.userid,
+      oid: this.$route.query.oid,
+      org: this.$route.query.org,
+      role: this.$route.query.role,
+      cid: this.$route.query.cid,
+      title: "",
+      testType: [],
+      see: false,
+      cJson: [],
+      loading: false,
+      look: "",
+      tableHeight: 500,
+      isLoading: false,
+      pageSize: 10,
+      total: 0,
+      page: 1,
+      tableData: [],
+    };
+  },
+  watch: {},
+  methods: {
+    retrunCourse() {
+      this.goTo(
+        "/test?userid=" +
+          this.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&role=" +
+          this.role
+      );
+    },
+    goTo(path) {
+      this.$router.push(path);
+    },
+    tableRowClassName({ row, rowIndex }) {
+      if ((rowIndex + 1) % 2 === 0) {
+        return "even_row";
+      } else {
+        return "";
+      }
+    },
+    changeHeight() {
+      this.tableHeight = this.$refs.stepBox.offsetHeight - 100;
+      if (this.tableHeight <= 530) {
+        this.tableHeight = 530;
+      }
+      // 监听窗口大小变化
+      let self = this;
+      window.onresize = function () {
+        self.tableHeight = this.$refs.stepBox.offsetHeight - 100;
+        if (self.tableHeight <= 530) {
+          self.tableHeight = 530;
+        }
+      };
+      // this.$refs.table.$el.offsetTop:表格距离浏览器的高度 //200表示你想要调整的表格距离底部的高度(你可以自己随意调整),因为我们一般都有放分页组件的,所以需要给它留一个高度
+    },
+    handleCurrentChange(val) {
+      this.page = val;
+      this.getData();
+    },
+    getTest(row) {
+      this.$router.push(
+        "/checkTest2?cid=" +
+        row.courseid +
+          "&userid=" +
+          this.userid +
+          "&userid2=" +
+          row.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&type=2" +
+          "&role=" +
+          this.role
+      );
+    },
+    getData() {
+      this.isLoading = true;
+      let params = {
+        cid: this.cid,
+        page: this.page,
+        pageSize: this.pageSize,
+      };
+      this.ajax
+        .get(this.$store.state.api + "getTestWorksPage", params)
+        .then((res) => {
+          this.isLoading = false;
+          this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
+          this.tableData = res.data[0];
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+  },
+  mounted() {
+    this.$nextTick(function () {
+      this.page = 1;
+      this.changeHeight();
+      this.getData();
+    });
+  },
+};
+</script>
+
+<style scoped>
+.pb_content {
+  height: 100% !important;
+  /* margin: 0 20px 0 20px; */
+}
+
+.pb_content_body {
+  width: 100% !important;
+  height: 100%;
+}
+
+.right {
+  height: 100%;
+  width: 100%;
+  display: flex;
+  overflow: hidden;
+  flex-direction: column;
+}
+
+.basic_box {
+  margin: 0 auto;
+  position: relative;
+  padding: 0 20px 0 20px;
+}
+
+.courseTop {
+  display: flex;
+  flex-direction: row;
+  justify-content: space-between;
+  align-items: center;
+  width: calc(100% - 40px);
+  margin: 0 auto;
+  padding: 10px 0;
+}
+
+.stepsNav {
+  display: flex;
+  flex-direction: row;
+  justify-content: flex-start;
+  align-items: center;
+}
+
+.step_box {
+  width: calc(100% - 40px);
+  margin: 0 auto;
+  height: calc(100% - 38px);
+  overflow: auto;
+}
+
+.el-table >>> .even_row {
+  background-color: #f1f1f1 !important;
+}
+
+.student_page {
+  margin-top: 10px;
+}
+</style>

+ 16 - 0
src/components/pages/test/index.vue

@@ -72,6 +72,7 @@
                             <div @click="goToCourse2(item.courseId)" v-if="((item.userid == userid) ||
                                 (item.course_teacher &&
                                     item.course_teacher.indexOf(userid) !== -1) || role == '1')">编辑</div>
+                            <div @click="checkToTest(item.courseId)">查看</div>
                             <!-- <div @click="get(item.courseId)">预览</div> -->
                             <!-- 项目进展 -->
                             <!-- <div @click="copyCourse(item.courseId)">复制</div> -->
@@ -274,6 +275,21 @@ export default {
                 this.role
             );
         },
+        checkToTest(cid){
+            this.$router.push(
+                "/checkToTest?cid=" +
+                cid +
+                "&userid=" +
+                this.userid +
+                "&oid=" +
+                this.oid +
+                "&org=" +
+                this.org +
+                "&type=2" +
+                "&role=" +
+                this.role
+            );
+        },
         tableRowClassName({ row, rowIndex }) {
             if ((rowIndex + 1) % 2 === 0) {
                 return "even_row";

+ 1001 - 908
src/components/pages/testStudent/index.vue

@@ -1,134 +1,182 @@
 <template>
-    <div class="pb_content" style="height: auto">
-        <div class="pb_head top">
-            <div>
-                <span>评测中心</span>
-            </div>
-            <!-- <div class="student_button">
+  <div class="pb_content" style="height: auto">
+    <div class="pb_head top">
+      <div>
+        <span>评测中心</span>
+      </div>
+      <!-- <div class="student_button">
                 <el-button type="primary" class="bgColor" @click="goToCourse()">新建评测</el-button>
             </div> -->
-        </div>
-        <div class="pb_content_body" style="height: 100%">
-            <div class="student_head">
-                <div class="choose">
-                    <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index">
-                        <span v-if="CourseTypeJson[item.id].length">{{ item.name }}</span>
-                        <el-select v-if="CourseTypeJson[item.id].length" v-model="courseTypeId[item.id]" placeholder="请选择"
-                            @change="getTypeName">
-                            <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="student_search">
-                        <span>所有者</span>
-                        <el-select v-model="groupA" @change="search">
-                            <el-option value="0" label="我的"></el-option>
-                            <!-- <el-option value="4" label="全部"></el-option> -->
-                            <!-- <el-option value="2" label="他人"
-                                v-if="oid != '1c3b9def-8fbe-11ed-b13d-005056b86db5'"></el-option> -->
-                        </el-select>
-                        <!-- <el-select v-model="groupA" @change="search" v-else>
+    </div>
+    <div class="pb_content_body" style="height: 100%">
+      <div class="student_head">
+        <div class="choose">
+          <div
+            class="all_choose"
+            v-for="(item, index) in CourseType[0]"
+            :key="index"
+          >
+            <span v-if="CourseTypeJson[item.id].length">{{ item.name }}</span>
+            <el-select
+              v-if="CourseTypeJson[item.id].length"
+              v-model="courseTypeId[item.id]"
+              placeholder="请选择"
+              @change="getTypeName"
+            >
+              <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="student_search">
+            <span>状态</span>
+            <el-select v-model="groupA" @change="search">
+              <el-option value="0" label="全部"></el-option>
+              <el-option value="1" label="已完成"></el-option>
+              <el-option value="2" label="未完成"></el-option>
+            </el-select>
+            <!-- <el-select v-model="groupA" @change="search" v-else>
                 <el-option value="4" label="全部"></el-option>
               </el-select> -->
-                    </div>
-                    <div @click="clear" class="clear" v-if="CourseType.length">重置</div>
-                </div>
-
-                <div class="student_right">
-                    <div class="head_left">
-                        <el-input v-model="courseName" class="student_input" placeholder="请输入项目名称"></el-input>
-                        <el-button class="course_button" @click="searchCourse">查询</el-button>
-                    </div>
-                </div>
-            </div>
-            <div class="student_table" v-loading="isLoading">
-                <div class="course_box">
-                    <div class="out_box" v-for="(item, index) in course" :key="index">
-                        <div class="bottom_box">
-                            <div>{{ item.title }}</div>
-                            <div class="kc_t">
-                                创建人:{{ item.uname }}
-                            </div>
-                            <div class="kc_time">
-                                <span style="color: #4b4b4b">创建日期:</span>{{ item.time }}
-                            </div>
-                            <div class="kc_time">
-                                <span style="color: #4b4b4b">修改日期:</span>{{ item.utime }}
-                            </div>
-                        </div>
-                        <div class="three_bottom">
-                            <div @click="goToCourse2(item.courseId)">进入答题</div>
-                        </div>
-                    </div>
-                    <div class="course_empty" v-if="course.length == 0">暂无数据</div>
-                </div>
-            </div>
+          </div>
+          <div @click="clear" class="clear" v-if="CourseType.length">重置</div>
         </div>
-        <div class="student_page">
-            <el-pagination background layout="prev, pager, next" :page-size="pageSize" :total="total"
-                v-if="page && course.length" style="padding-bottom: 20px"
-                @current-change="handleCurrentChange"></el-pagination>
+
+        <div class="student_right">
+          <div class="head_left">
+            <el-input
+              v-model="courseName"
+              class="student_input"
+              placeholder="请输入项目名称"
+            ></el-input>
+            <el-button class="course_button" @click="searchCourse"
+              >查询</el-button
+            >
+          </div>
         </div>
-        <el-dialog :visible.sync="dialogVisible1" size="tiny">
-            <img width="100%" :src="dialogImageUrl" alt />
-        </el-dialog>
-        <el-dialog title="查看提问" :visible.sync="dialogVisible" :append-to-body="true" width="750px"
-            :before-close="handleClose" class="dialog_diy">
-            <div>
-                <div class="a_addBox">
-                    <CourseProblem :problemCourse="problemCourse"></CourseProblem>
-                </div>
+      </div>
+      <div class="student_table" v-loading="isLoading">
+        <div class="course_box">
+          <div class="out_box" v-for="(item, index) in course" :key="index">
+            <div class="bottom_box">
+              <div class="title">
+                <span>{{ item.title }}</span
+                ><span :class="{ is:item.testCount > 0,no:item.testCount == 0}">{{ item.testCount > 0 ? "已完成" : "未完成" }}</span>
+              </div>
+              <div class="kc_t">创建人:{{ item.uname }}</div>
+              <div class="kc_time">
+                <span style="color: #4b4b4b">创建日期:</span>{{ item.time }}
+              </div>
+              <div class="kc_time">
+                <span style="color: #4b4b4b">修改日期:</span>{{ item.utime }}
+              </div>
             </div>
-            <span slot="footer" class="dialog-footer">
-                <el-button @click="dialogVisible = false">关 闭</el-button>
-            </span>
-        </el-dialog>
-        <el-dialog title="查看协同项目" :visible.sync="dialogVisibleCourse" :append-to-body="true" width="850px"
-            :before-close="handleClose" class="dialog_diy">
-            <div class="ct_box">
-                <div class="out_box" v-for="(item, index) in courseTeam" :key="index" style="margin-left: 15px">
-                    <div class="tup">
-                        <img :src="item.cover != null && item.cover != ''
-                                ? JSON.parse(item.cover).length > 0
-                                    ? JSON.parse(item.cover)[0].url
-                                    : mr
-                                : mr
-                            " alt />
-                    </div>
-                    <div class="bottom_box">
-                        <div>{{ item.title }}</div>
-                        <div class="kc_t">创建人:{{ item.uname }}</div>
-                        <div class="kc_time">{{ item.time }}</div>
-                    </div>
-                    <div class="three_bottom">
-                        <!-- <div @click="jump(item.courseId)">查看内容</div> -->
-                        <div @click="
-                            goTo(
-                                '/studentAddCourse?cid=' +
-                                item.courseId +
-                                '&userid=' +
-                                userid +
-                                '&oid=' +
-                                oid +
-                                '&org=' +
-                                org +
-                                '&role=' +
-                                role
-                            )
-                            ">
-                            编辑
-                        </div>
-                    </div>
-                </div>
-                <div class="course_empty" v-if="courseTeam.length == 0">暂无数据</div>
+            <div class="three_bottom">
+              <div @click="checkTest(item.courseId)" v-if="item.testCount > 0">查看答题</div>
+              <div @click="goToCourse2(item.courseId)">{{item.testCount > 0 ? '重新答题' : '进入答题'}}</div>
             </div>
-            <span slot="footer" class="dialog-footer">
-                <el-button @click="dialogVisibleCourse = false">关 闭</el-button>
-            </span>
-        </el-dialog>
+          </div>
+          <div class="course_empty" v-if="course.length == 0">暂无数据</div>
+        </div>
+      </div>
     </div>
+    <div class="student_page">
+      <el-pagination
+        background
+        layout="prev, pager, next"
+        :page-size="pageSize"
+        :total="total"
+        v-if="page && course.length"
+        style="padding-bottom: 20px"
+        @current-change="handleCurrentChange"
+      ></el-pagination>
+    </div>
+    <el-dialog :visible.sync="dialogVisible1" size="tiny">
+      <img width="100%" :src="dialogImageUrl" alt />
+    </el-dialog>
+    <el-dialog
+      title="查看提问"
+      :visible.sync="dialogVisible"
+      :append-to-body="true"
+      width="750px"
+      :before-close="handleClose"
+      class="dialog_diy"
+    >
+      <div>
+        <div class="a_addBox">
+          <CourseProblem :problemCourse="problemCourse"></CourseProblem>
+        </div>
+      </div>
+      <span slot="footer" class="dialog-footer">
+        <el-button @click="dialogVisible = false">关 闭</el-button>
+      </span>
+    </el-dialog>
+    <el-dialog
+      title="查看协同项目"
+      :visible.sync="dialogVisibleCourse"
+      :append-to-body="true"
+      width="850px"
+      :before-close="handleClose"
+      class="dialog_diy"
+    >
+      <div class="ct_box">
+        <div
+          class="out_box"
+          v-for="(item, index) in courseTeam"
+          :key="index"
+          style="margin-left: 15px"
+        >
+          <div class="tup">
+            <img
+              :src="
+                item.cover != null && item.cover != ''
+                  ? JSON.parse(item.cover).length > 0
+                    ? JSON.parse(item.cover)[0].url
+                    : mr
+                  : mr
+              "
+              alt
+            />
+          </div>
+          <div class="bottom_box">
+            <div>{{ item.title }}</div>
+            <div class="kc_t">创建人:{{ item.uname }}</div>
+            <div class="kc_time">{{ item.time }}</div>
+          </div>
+          <div class="three_bottom">
+            <!-- <div @click="jump(item.courseId)">查看内容</div> -->
+            <div
+              @click="
+                goTo(
+                  '/studentAddCourse?cid=' +
+                    item.courseId +
+                    '&userid=' +
+                    userid +
+                    '&oid=' +
+                    oid +
+                    '&org=' +
+                    org +
+                    '&role=' +
+                    role
+                )
+              "
+            >
+              编辑
+            </div>
+          </div>
+        </div>
+        <div class="course_empty" v-if="courseTeam.length == 0">暂无数据</div>
+      </div>
+      <span slot="footer" class="dialog-footer">
+        <el-button @click="dialogVisibleCourse = false">关 闭</el-button>
+      </span>
+    </el-dialog>
+  </div>
 </template>
   
 <script>
@@ -136,1004 +184,1049 @@ import "../../../common/aws-sdk-2.235.1.min";
 import EditorBar from "../../../components/tools/wangEnduit";
 import CourseProblem from "../components/courseProblem";
 export default {
-    components: { EditorBar, CourseProblem },
-    data() {
-        return {
-            itemCount: 1,
-            courseTitle: "",
-            courseText: "",
-            courseTime: "",
-            isLoading: false,
-            fileList: [],
-            fileList1: [],
-            homeworkList: [{ name: "" }],
-            formLabelWidth: "100px",
-            dialogVisible: false,
-            dialogVisible1: false,
-            dialogVisibleCourse: false,
-            dialogImageUrl: "",
-            group: "",
-            userid: this.$route.query.userid,
-            oid: this.$route.query.oid,
-            org: this.$route.query.org,
-            role: this.$route.query.role,
-            classid: this.$route.query.classid,
-            Juri: "",
-            groupList: [],
-            JuriList: [],
-            page: 1,
-            total: 0,
-            pageSize: 20,
-            tableData: [],
-            now: "",
-            courseDetail: {},
-            addCourse: {},
-            groupA: "3",
-            classX: "",
-            course: [],
-            courseName: "",
-            mr: require("../../../assets/icon/kc1.png"),
-            CourseType: [],
-            CourseTypeJson: {},
-            courseTypeId: {},
-            courseTypeSon: [],
-            isChoose: 0,
-            problemCourse: null, //查看提问的项目
-            courseTeam: [],
-        };
+  components: { EditorBar, CourseProblem },
+  data() {
+    return {
+      itemCount: 1,
+      courseTitle: "",
+      courseText: "",
+      courseTime: "",
+      isLoading: false,
+      fileList: [],
+      fileList1: [],
+      homeworkList: [{ name: "" }],
+      formLabelWidth: "100px",
+      dialogVisible: false,
+      dialogVisible1: false,
+      dialogVisibleCourse: false,
+      dialogImageUrl: "",
+      group: "",
+      userid: this.$route.query.userid,
+      oid: this.$route.query.oid,
+      org: this.$route.query.org,
+      role: this.$route.query.role,
+      classid: this.$route.query.classid,
+      Juri: "",
+      groupList: [],
+      JuriList: [],
+      page: 1,
+      total: 0,
+      pageSize: 20,
+      tableData: [],
+      now: "",
+      courseDetail: {},
+      addCourse: {},
+      groupA: "0",
+      classX: "",
+      course: [],
+      courseName: "",
+      mr: require("../../../assets/icon/kc1.png"),
+      CourseType: [],
+      CourseTypeJson: {},
+      courseTypeId: {},
+      courseTypeSon: [],
+      isChoose: 0,
+      problemCourse: null, //查看提问的项目
+      courseTeam: [],
+    };
+  },
+  methods: {
+    change(val) {
+      console.log(val);
     },
-    methods: {
-        change(val) {
-            console.log(val);
-        },
-        time() {
-            if (!this.now) {
-                this.now = new Date().getTime();
-                return true;
-            } else {
-                let time = new Date().getTime();
-                if (time - this.now > 3000) {
-                    this.now = time;
-                    return true;
-                } else {
-                    return false;
-                }
-            }
-        },
-        addHomeworkBox() {
-            this.homeworkList.push({ name: "" });
-            this.itemCount++;
-        },
-        reduceHomeworkBox() {
-            var a = this.homeworkList;
-            a.splice(a.length - 1);
-            this.itemCount--;
-        },
-        goTo(path) {
-            this.$router.push(path);
-        },
-        goToCourse(courseId) {
-            if (courseId) {
-                this.$router.push(
-                    "/studentAddCourse?cid=" +
-                    courseId +
-                    "&userid=" +
-                    this.userid +
-                    "&oid=" +
-                    this.oid +
-                    "&org=" +
-                    this.org +
-                    "&role=" +
-                    this.role
-                );
-            } else {
-                this.$router.push(
-                    "/addTest?userid=" +
-                    this.userid +
-                    "&oid=" +
-                    this.oid +
-                    "&org=" +
-                    this.org +
-                    "&role=" +
-                    this.role
-                );
+    time() {
+      if (!this.now) {
+        this.now = new Date().getTime();
+        return true;
+      } else {
+        let time = new Date().getTime();
+        if (time - this.now > 3000) {
+          this.now = time;
+          return true;
+        } else {
+          return false;
+        }
+      }
+    },
+    addHomeworkBox() {
+      this.homeworkList.push({ name: "" });
+      this.itemCount++;
+    },
+    reduceHomeworkBox() {
+      var a = this.homeworkList;
+      a.splice(a.length - 1);
+      this.itemCount--;
+    },
+    goTo(path) {
+      this.$router.push(path);
+    },
+    goToCourse(courseId) {
+      if (courseId) {
+        this.$router.push(
+          "/studentAddCourse?cid=" +
+            courseId +
+            "&userid=" +
+            this.userid +
+            "&oid=" +
+            this.oid +
+            "&org=" +
+            this.org +
+            "&role=" +
+            this.role
+        );
+      } else {
+        this.$router.push(
+          "/addTest?userid=" +
+            this.userid +
+            "&oid=" +
+            this.oid +
+            "&org=" +
+            this.org +
+            "&role=" +
+            this.role
+        );
+      }
+      // this.$router.push(path);
+    },
+    goToCourse2(cid) {
+      this.$router.push(
+        "/doTest?cid=" +
+          cid +
+          "&userid=" +
+          this.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&type=2" +
+          "&role=" +
+          this.role
+      );
+    },
+    checkTest(cid) {
+      this.$router.push(
+        "/checkTest?cid=" +
+          cid +
+          "&userid=" +
+          this.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&type=2" +
+          "&role=" +
+          this.role
+      );
+    },
+    tableRowClassName({ row, rowIndex }) {
+      if ((rowIndex + 1) % 2 === 0) {
+        return "even_row";
+      } else {
+        return "";
+      }
+    },
+    jump(cid) {
+      // window.open(
+      //   "//pbl.cocorobo.cn/pbl-student-table/dist/#/courseDetail?courseId=" +
+      //     cid +
+      //     "&userid=" +
+      //     this.userid
+      // );
+      window.parent.postMessage({ cid: cid, screenType: "2s" }, "*");
+    },
+    get(cid) {
+      window.parent.postMessage({ cid: cid, screenType: "3s" }, "*");
+    },
+    getA(cid) {
+      this.$router.push(
+        "/courseProgress?cid=" +
+          cid +
+          "&userid=" +
+          this.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org
+      );
+    },
+    handle_remove(file, fileList) {
+      var _tmp = this.fileList;
+      for (var i = 0, len = _tmp.length; i < len; i++) {
+        if (_tmp[i].uid == file.uid) {
+          _tmp.splice(i, 1);
+          break;
+        }
+        this.fileList = _tmp;
+      }
+    },
+    handle_remove1(file, fileList) {
+      var _tmp = this.fileList1;
+      for (var i = 0, len = _tmp.length; i < len; i++) {
+        if (_tmp[i].uid == file.uid) {
+          _tmp.splice(i, 1);
+          break;
+        }
+        this.fileList1 = _tmp;
+      }
+    },
+    handleCurrentChange(val) {
+      // console.log(`当前页: ${val}`);
+      this.page = val;
+      this.getCourse();
+    },
+    init() {},
+    handleClose(done) {
+      done();
+    },
+    handleRemove(file, fileList) {
+      console.log(file, fileList);
+    },
+    handlePictureCardPreview(file) {
+      this.dialogImageUrl = file.url;
+      this.dialogVisible1 = true;
+    },
+    onExceed() {
+      this.$message.error("项目海报仅支持上传一张,请删除后再进行上传");
+    },
+    //uuid生成
+    guid() {
+      return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(
+        /[xy]/g,
+        function (c) {
+          var r = (Math.random() * 16) | 0,
+            v = c == "x" ? r : (r & 0x3) | 0x8;
+          return v.toString(16);
+        }
+      );
+    },
+    time() {
+      if (!this.now) {
+        this.now = new Date().getTime();
+        return true;
+      } else {
+        let time = new Date().getTime();
+        if (time - this.now > 3000) {
+          this.now = time;
+          return true;
+        } else {
+          return false;
+        }
+      }
+    },
+    searchCourse() {
+      this.page = 1;
+      this.getCourse();
+    },
+    clear() {
+      if (this.CourseType.length) {
+        for (var i = 0; i < this.CourseType[0].length; i++) {
+          this.courseTypeId[this.CourseType[0][i].id] = "";
+        }
+      }
+      this.getCourse();
+    },
+    getCourse() {
+      var typeE = [];
+      var typea, typeb, typec, typed, typef;
+      if (this.isChoose == 1) {
+        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 == "栏目") {
+              typeb = 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];
+            } else if (this.CourseType[0][i].name == "赛道") {
+              typed = this.courseTypeId[this.CourseType[0][i].id];
+            } else if (this.CourseType[0][i].name == "项目类型") {
+              typed = this.courseTypeId[this.CourseType[0][i].id];
+            } else if (this.CourseType[0][i].name == "主题") {
+              typef = this.courseTypeId[this.CourseType[0][i].id];
             }
-            // this.$router.push(path);
-        },
-        goToCourse2(cid) {
-            this.$router.push(
-                "/doTest?cid=" +
-                cid +
-                "&userid=" +
-                this.userid +
-                "&oid=" +
-                this.oid +
-                "&org=" +
-                this.org +
-                "&type=2" +
-                "&role=" +
-                this.role
+            this.courseTypeSon.push(
+              this.courseTypeId[this.CourseType[0][i].id]
             );
-        },
-        tableRowClassName({ row, rowIndex }) {
-            if ((rowIndex + 1) % 2 === 0) {
-                return "even_row";
-            } else {
-                return "";
+          }
+        }
+      }
+      this.isLoading = true;
+      let params = {
+        type: this.groupA,
+        uid: this.userid,
+        oid: this.oid,
+        org: this.org,
+        typea: typea != undefined ? typea : "",
+        typeb: typeb != undefined ? typeb : "",
+        typec: typec != undefined ? typec : "",
+        typed: typed != undefined ? typed : "",
+        typef: typef != undefined ? typef : "",
+        typeE: typeE.join(","),
+        cu: "",
+        cn: this.courseName,
+        page: this.page,
+        pageSize: this.pageSize,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectTesttCourseCenter", params)
+        .then((res) => {
+          this.isLoading = false;
+          this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
+          this.course = res.data[0];
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    getTypeName() {
+      this.$forceUpdate();
+      this.page = 1;
+      this.isChoose = 1;
+      this.getCourse();
+    },
+    // searchCourse() {
+    //   this.isLoading = true;
+    //   let params = {
+    //     cu: "",
+    //     cn: this.courseName,
+    //     page: this.page,
+    //   };
+    //   this.ajax
+    //     .get(this.$store.state.api + "searchCourse", params)
+    //     .then((res) => {
+    //       this.isLoading = false;
+    //       this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
+    //       this.course = res.data[0];
+    //     })
+    //     .catch((err) => {
+    //       this.isLoading = false;
+    //       console.error(err);
+    //     });
+    // },
+    deleteCourse(cid) {
+      // if (this.time()) {
+      this.$confirm("确定删除此项目吗?", "提示", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      })
+        .then(() => {
+          this.isLoading = true;
+          let params = {
+            cid: cid,
+          };
+          this.ajax
+            .get(this.$store.state.api + "deleteStudentCourse", params)
+            .then((res) => {
+              this.isLoading = false;
+              this.$message.success("删除成功");
+              this.getCourse();
+            })
+            .catch((err) => {
+              console.error(err);
+            });
+        })
+        .catch(() => {
+          loading.close();
+          this.isLoading = false;
+          return;
+        });
+      // }
+    },
+    selectAllType() {
+      let params = {
+        org: this.org && this.org != "" ? this.org : "",
+        oid: this.oid && this.oid != "" ? this.oid : "",
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectAllTypeT", params)
+        .then((res) => {
+          this.CourseType = res.data;
+
+          for (var i = 0; i < res.data[0].length; i++) {
+            if (res.data[0][i].id == "34629907-d02f-11ec-8c78-005056b86db5") {
+              res.data[0][i].name = "学科";
+            } else if (
+              res.data[0][i].id == "34628934-d02f-11ec-8c78-005056b86db5"
+            ) {
+              res.data[0][i].name = "年级";
             }
-        },
-        jump(cid) {
-            // window.open(
-            //   "//pbl.cocorobo.cn/pbl-student-table/dist/#/courseDetail?courseId=" +
-            //     cid +
-            //     "&userid=" +
-            //     this.userid
-            // );
-            window.parent.postMessage({ cid: cid, screenType: "2s" }, "*");
-        },
-        get(cid) {
-            window.parent.postMessage({ cid: cid, screenType: "3s" }, "*");
-        },
-        getA(cid) {
-            this.$router.push("/courseProgress?cid=" + cid + "&userid=" +
-                this.userid +
-                "&oid=" +
-                this.oid +
-                "&org=" +
-                this.org)
-        },
-        handle_remove(file, fileList) {
-            var _tmp = this.fileList;
-            for (var i = 0, len = _tmp.length; i < len; i++) {
-                if (_tmp[i].uid == file.uid) {
-                    _tmp.splice(i, 1);
-                    break;
-                }
-                this.fileList = _tmp;
+            if (!this.cid) {
+              this.courseTypeId[res.data[0][i].id] = "";
             }
-        },
-        handle_remove1(file, fileList) {
-            var _tmp = this.fileList1;
-            for (var i = 0, len = _tmp.length; i < len; i++) {
-                if (_tmp[i].uid == file.uid) {
-                    _tmp.splice(i, 1);
-                    break;
-                }
-                this.fileList1 = _tmp;
+            if (!this.CourseTypeJson[res.data[0][i].id]) {
+              this.CourseTypeJson[res.data[0][i].id] = [];
             }
-        },
-        handleCurrentChange(val) {
-            // console.log(`当前页: ${val}`);
-            this.page = val;
-            this.getCourse();
-        },
-        init() { },
-        handleClose(done) {
-            done();
-        },
-        handleRemove(file, fileList) {
-            console.log(file, fileList);
-        },
-        handlePictureCardPreview(file) {
-            this.dialogImageUrl = file.url;
-            this.dialogVisible1 = true;
-        },
-        onExceed() {
-            this.$message.error("项目海报仅支持上传一张,请删除后再进行上传");
-        },
-        //uuid生成
-        guid() {
-            return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(
-                /[xy]/g,
-                function (c) {
-                    var r = (Math.random() * 16) | 0,
-                        v = c == "x" ? r : (r & 0x3) | 0x8;
-                    return v.toString(16);
+
+            if (res.data[2].length == 0 && res.data[3].length == 0) {
+              // for (var j = 0; j < res.data[1].length; j++) {
+              //   if (res.data[0][i].id == res.data[1][j].pid) {
+              //     this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
+              //   }
+              // }
+              // if(this.org == '150e3120-9195-11ed-b13d-005056b86db5'){
+              for (var j = 0; j < res.data[1].length; j++) {
+                if (res.data[0][i].id == res.data[1][j].pid) {
+                  this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
                 }
-            );
-        },
-        time() {
-            if (!this.now) {
-                this.now = new Date().getTime();
-                return true;
+              }
+              // }else{
+              //   this.CourseType = []
+              // }
             } else {
-                let time = new Date().getTime();
-                if (time - this.now > 3000) {
-                    this.now = time;
-                    return true;
-                } else {
-                    return false;
+              if (res.data[2].length > 0) {
+                for (var j = 0; j < res.data[2].length; j++) {
+                  if (res.data[0][i].id == res.data[2][j].pid) {
+                    this.CourseTypeJson[res.data[0][i].id].push(res.data[2][j]); // 去除公共分类
+                  }
                 }
+              }
+              if (res.data[3].length > 0) {
+                for (var j = 0; j < res.data[3].length; j++) {
+                  if (res.data[0][i].id == res.data[3][j].pid) {
+                    this.CourseTypeJson[res.data[0][i].id].push(res.data[3][j]); // 去除公共分类
+                  }
+                }
+              }
             }
-        },
-        searchCourse() {
-            this.page = 1;
-            this.getCourse();
-        },
-        clear() {
-            if (this.CourseType.length) {
-                for (var i = 0; i < this.CourseType[0].length; i++) {
-                    this.courseTypeId[this.CourseType[0][i].id] = "";
+          }
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    selectType() {
+      this.ajax
+        .get(this.$store.state.api + "selectStudentType")
+        .then((res) => {
+          this.CourseType = res.data;
+          for (var i = 0; i < res.data[0].length; i++) {
+            if (!this.cid) {
+              this.courseTypeId[res.data[0][i].id] = "";
+            }
+            if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
+              if (res.data[0][i].name == "栏目") {
+                this.CourseType[0][i].name = "主题";
+              }
+            }
+            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.getCourse();
-        },
-        getCourse() {
-            var typeE = [];
-            var typea, typeb, typec, typed, typef;
-            if (this.isChoose == 1) {
-                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 == "栏目") {
-                            typeb = 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];
-                        } else if (this.CourseType[0][i].name == "赛道") {
-                            typed = this.courseTypeId[this.CourseType[0][i].id];
-                        } else if (this.CourseType[0][i].name == "项目类型") {
-                            typed = this.courseTypeId[this.CourseType[0][i].id];
-                        } else if (this.CourseType[0][i].name == "主题") {
-                            typef = this.courseTypeId[this.CourseType[0][i].id];
-                        }
-                        this.courseTypeSon.push(
-                            this.courseTypeId[this.CourseType[0][i].id]
-                        );
-                    }
+          }
+          this.selectTypeByOid();
+          this.selectTypeByOrg();
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    selectTypeByOid() {
+      let params = {
+        oid: this.oid,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectStudentTypeByOid", params)
+        .then((res) => {
+          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.isLoading = true;
-            let params = {
-                type: this.groupA,
-                uid: this.userid,
-                oid: this.oid,
-                org: this.org,
-                typea: typea != undefined ? typea : "",
-                typeb: typeb != undefined ? typeb : "",
-                typec: typec != undefined ? typec : "",
-                typed: typed != undefined ? typed : "",
-                typef: typef != undefined ? typef : "",
-                typeE: typeE.join(","),
-                cu: "",
-                cn: this.courseName,
-                page: this.page,
-                pageSize: this.pageSize,
-            };
-            this.ajax
-                .get(this.$store.state.api + "selectTesttCourseCenter", params)
-                .then((res) => {
-                    this.isLoading = false;
-                    this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
-                    this.course = res.data[0];
-                })
-                .catch((err) => {
-                    console.error(err);
-                });
-        },
-        getTypeName() {
-            this.$forceUpdate();
-            this.page = 1;
-            this.isChoose = 1;
-            this.getCourse();
-        },
-        // searchCourse() {
-        //   this.isLoading = true;
-        //   let params = {
-        //     cu: "",
-        //     cn: this.courseName,
-        //     page: this.page,
-        //   };
-        //   this.ajax
-        //     .get(this.$store.state.api + "searchCourse", params)
-        //     .then((res) => {
-        //       this.isLoading = false;
-        //       this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
-        //       this.course = res.data[0];
-        //     })
-        //     .catch((err) => {
-        //       this.isLoading = false;
-        //       console.error(err);
-        //     });
-        // },
-        deleteCourse(cid) {
-            // if (this.time()) {
-            this.$confirm("确定删除此项目吗?", "提示", {
-                confirmButtonText: "确定",
-                cancelButtonText: "取消",
-                type: "warning",
-            })
-                .then(() => {
-                    this.isLoading = true;
-                    let params = {
-                        cid: cid,
-                    };
-                    this.ajax
-                        .get(this.$store.state.api + "deleteStudentCourse", params)
-                        .then((res) => {
-                            this.isLoading = false;
-                            this.$message.success("删除成功");
-                            this.getCourse();
-                        })
-                        .catch((err) => {
-                            console.error(err);
-                        });
-                })
-                .catch(() => {
-                    loading.close();
-                    this.isLoading = false;
-                    return;
-                });
-            // }
-        },
-        selectAllType() {
-            let params = {
-                org: this.org && this.org != "" ? this.org : "",
-                oid: this.oid && this.oid != "" ? this.oid : "",
-            };
-            this.ajax
-                .get(this.$store.state.api + "selectAllTypeT", params)
-                .then((res) => {
-                    this.CourseType = res.data;
-
-                    for (var i = 0; i < res.data[0].length; i++) {
-                        if (res.data[0][i].id == "34629907-d02f-11ec-8c78-005056b86db5") {
-                            res.data[0][i].name = "学科";
-                        } else if (res.data[0][i].id == "34628934-d02f-11ec-8c78-005056b86db5") {
-                            res.data[0][i].name = "年级";
-                        }
-                        if (!this.cid) {
-                            this.courseTypeId[res.data[0][i].id] = '';
-                        }
-                        if (!this.CourseTypeJson[res.data[0][i].id]) {
-                            this.CourseTypeJson[res.data[0][i].id] = [];
-                        }
-
-                        if (res.data[2].length == 0 && res.data[3].length == 0) {
-                            // for (var j = 0; j < res.data[1].length; j++) {
-                            //   if (res.data[0][i].id == res.data[1][j].pid) {
-                            //     this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
-                            //   }
-                            // }
-                            // if(this.org == '150e3120-9195-11ed-b13d-005056b86db5'){
-                            for (var j = 0; j < res.data[1].length; j++) {
-                                if (res.data[0][i].id == res.data[1][j].pid) {
-                                    this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
-                                }
-                            }
-                            // }else{
-                            //   this.CourseType = []
-                            // }
-                        } else {
-                            if (res.data[2].length > 0) {
-                                for (var j = 0; j < res.data[2].length; j++) {
-                                    if (res.data[0][i].id == res.data[2][j].pid) {
-                                        this.CourseTypeJson[res.data[0][i].id].push(res.data[2][j]); // 去除公共分类
-                                    }
-                                }
-                            }
-                            if (res.data[3].length > 0) {
-                                for (var j = 0; j < res.data[3].length; j++) {
-                                    if (res.data[0][i].id == res.data[3][j].pid) {
-                                        this.CourseTypeJson[res.data[0][i].id].push(res.data[3][j]); // 去除公共分类
-                                    }
-                                }
-                            }
-                        }
-                    }
-                })
-                .catch((err) => {
-                    console.error(err);
-                });
-        },
-        selectType() {
-            this.ajax
-                .get(this.$store.state.api + "selectStudentType")
-                .then((res) => {
-                    this.CourseType = res.data;
-                    for (var i = 0; i < res.data[0].length; i++) {
-                        if (!this.cid) {
-                            this.courseTypeId[res.data[0][i].id] = "";
-                        }
-                        if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
-                            if (res.data[0][i].name == "栏目") {
-                                this.CourseType[0][i].name = "主题";
-                            }
-                        }
-                        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.selectTypeByOid();
-                    this.selectTypeByOrg();
-                })
-                .catch((err) => {
-                    console.error(err);
-                });
-        },
-        selectTypeByOid() {
-            let params = {
-                oid: this.oid,
-            };
-            this.ajax
-                .get(this.$store.state.api + "selectStudentTypeByOid", params)
-                .then((res) => {
-                    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.$forceUpdate();
-                })
-                .catch((err) => {
-                    console.error(err);
-                });
-        },
-        selectTypeByOrg() {
-            let params = {
-                oid: this.org,
-            };
-            this.ajax
-                .get(this.$store.state.api + "selectStudentTypeByOid", params)
-                .then((res) => {
-                    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.$forceUpdate();
-                })
-                .catch((err) => {
-                    console.error(err);
-                });
-        },
-        openCourse() {
-            this.dialogVisibleCourse = true;
-            this.getTeamCourse();
-        },
-        getTeamCourse() {
-            let params = {
-                uid: this.userid,
-                oid: this.oid,
-            };
-            this.ajax
-                .get(this.$store.state.api + "selectCourseTeam", params)
-                .then((res) => {
-                    this.courseTeam = res.data[0];
-                })
-                .catch((err) => {
-                    console.error(err);
-                });
-        },
-        search() {
-            this.page = 1;
-            this.getCourse();
-        },
-        checkProblem(res) {
-            this.problemCourse = res;
-            this.dialogVisible = true;
-        },
-        copyCourse(cid) {
-            let params = [{
-                cid: cid,
-                uid: this.userid
-            }]
-            this.ajax
-                .post(this.$store.state.api + "copySCourse", params)
-                .then((res) => {
-                    this.page = 1
-                    if (this.role == "1") {
-                        this.groupA = "0";
-                    } else {
-                        this.groupA = "0";
-                    }
-                    this.$message.success("复制成功")
-                    this.clear()
-                })
-                .catch((err) => {
-                    console.error(err);
-                });
-        }
+          }
+          this.$forceUpdate();
+        })
+        .catch((err) => {
+          console.error(err);
+        });
     },
-    created() {
-        if (this.role == '1') {
-            this.groupA = '0'
-        }
-        this.page = 1;
-        this.selectAllType();
-        this.getCourse();
+    selectTypeByOrg() {
+      let params = {
+        oid: this.org,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectStudentTypeByOid", params)
+        .then((res) => {
+          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.$forceUpdate();
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    openCourse() {
+      this.dialogVisibleCourse = true;
+      this.getTeamCourse();
+    },
+    getTeamCourse() {
+      let params = {
+        uid: this.userid,
+        oid: this.oid,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectCourseTeam", params)
+        .then((res) => {
+          this.courseTeam = res.data[0];
+        })
+        .catch((err) => {
+          console.error(err);
+        });
     },
+    search() {
+      this.page = 1;
+      this.getCourse();
+    },
+    checkProblem(res) {
+      this.problemCourse = res;
+      this.dialogVisible = true;
+    },
+    copyCourse(cid) {
+      let params = [
+        {
+          cid: cid,
+          uid: this.userid,
+        },
+      ];
+      this.ajax
+        .post(this.$store.state.api + "copySCourse", params)
+        .then((res) => {
+          this.page = 1;
+          if (this.role == "1") {
+            this.groupA = "0";
+          } else {
+            this.groupA = "0";
+          }
+          this.$message.success("复制成功");
+          this.clear();
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+  },
+  created() {
+    this.page = 1;
+    this.selectAllType();
+    this.getCourse();
+  },
 };
 </script>
   
 <style scoped>
-.dialog_diy>>>.el-dialog__header {
-    background: #3d67bc !important;
-    padding: 15px 20px;
+.dialog_diy >>> .el-dialog__header {
+  background: #3d67bc !important;
+  padding: 15px 20px;
 }
 
-.dialog_diy>>>.el-dialog__title {
-    color: #fff;
+.dialog_diy >>> .el-dialog__title {
+  color: #fff;
 }
 
-.dialog_diy>>>.el-dialog__headerbtn {
-    top: 19px;
+.dialog_diy >>> .el-dialog__headerbtn {
+  top: 19px;
 }
 
-.dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
-    color: #fff;
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
+  color: #fff;
 }
 
-.dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
-    color: #fff;
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
+  color: #fff;
 }
 
-.student_head>>>.el-button--primary {
-    background-color: #2268bc;
+.student_head >>> .el-button--primary {
+  background-color: #2268bc;
 }
 
 .xls_button {
-    font-size: 14px;
-    cursor: pointer;
-    text-decoration: underline;
-    color: rgb(34, 104, 188);
+  font-size: 14px;
+  cursor: pointer;
+  text-decoration: underline;
+  color: rgb(34, 104, 188);
 }
 
 .student_head {
-    display: flex;
-    justify-content: space-between;
-    align-items: baseline;
-    flex-direction: row;
-    flex-wrap: wrap;
+  display: flex;
+  justify-content: space-between;
+  align-items: baseline;
+  flex-direction: row;
+  flex-wrap: wrap;
 }
 
 .top {
-    display: flex;
-    justify-content: space-between;
+  display: flex;
+  justify-content: space-between;
 }
 
 .bgColor {
-    background: #466b99;
+  background: #466b99;
 }
 
 .student_search {
-    display: flex;
-    align-items: center;
-    /* width: calc(100% / 3); */
-    width: 190px;
+  display: flex;
+  align-items: center;
+  /* width: calc(100% / 3); */
+  width: 190px;
 }
 
 .student_search span {
-    margin: 0 10px 0 0;
-    min-width: 65px;
+  margin: 0 10px 0 0;
+  min-width: 65px;
+  text-align-last: justify;
 }
 
 .student_button {
-    display: flex;
-    overflow: hidden;
-    height: 40px;
+  display: flex;
+  overflow: hidden;
+  height: 40px;
 }
 
 .upload-demo {
-    display: flex;
-    flex-direction: column;
-    align-items: end;
-    /* position: relative; */
-    width: 100px;
-    overflow: hidden;
+  display: flex;
+  flex-direction: column;
+  align-items: end;
+  /* position: relative; */
+  width: 100px;
+  overflow: hidden;
 }
 
 .student_table {
-    padding: 20px 0;
-    height: 100%;
-    /* overflow: auto; */
-    min-height: 360px;
+  padding: 20px 0;
+  height: 100%;
+  /* overflow: auto; */
+  min-height: 360px;
 }
 
 .student_empty {
-    display: flex;
-    justify-content: center;
-    align-items: center;
+  display: flex;
+  justify-content: center;
+  align-items: center;
 }
 
-.el-table>>>.even_row {
-    background-color: #f1f1f1;
+.el-table >>> .even_row {
+  background-color: #f1f1f1;
 }
 
 .time {
-    font-size: 13px;
-    color: #999;
+  font-size: 13px;
+  color: #999;
 }
 
 .course_button {
-    padding: 10px 20px;
+  padding: 10px 20px;
 }
 
 .course_button_box {
-    display: flex;
-    margin-top: 5px;
-    justify-content: space-between;
+  display: flex;
+  margin-top: 5px;
+  justify-content: space-between;
 }
 
 .course_rate {
-    margin-top: 5px;
+  margin-top: 5px;
 }
 
 .course_view {
-    display: flex;
-    align-items: center;
-    margin: 5px 0 0 0;
+  display: flex;
+  align-items: center;
+  margin: 5px 0 0 0;
 }
 
 .course_view i {
-    background-image: url("../../../assets/liulan.png");
-    width: 25px;
-    height: 25px;
-    background-size: 100% 100%;
-    /* margin-top: 1px; */
-    line-height: 25px;
-    vertical-align: text-top;
-    background-repeat: no-repeat;
+  background-image: url("../../../assets/liulan.png");
+  width: 25px;
+  height: 25px;
+  background-size: 100% 100%;
+  /* margin-top: 1px; */
+  line-height: 25px;
+  vertical-align: text-top;
+  background-repeat: no-repeat;
 }
 
 .image {
-    width: 100%;
-    height: 150px;
-    display: block;
+  width: 100%;
+  height: 150px;
+  display: block;
 }
 
 .course_box {
-    display: flex;
-    flex-wrap: wrap;
+  display: flex;
+  flex-wrap: wrap;
 }
 
 .student_page {
-    width: 95%;
-    margin: 0 auto;
+  width: 95%;
+  margin: 0 auto;
 }
 
 .course_create_box {
-    font-size: 18px;
+  font-size: 18px;
 }
 
 .course_name {
-    margin-top: 10px;
+  margin-top: 10px;
 }
 
 .course_name span {
-    margin-bottom: 10px;
-    display: block;
+  margin-bottom: 10px;
+  display: block;
 }
 
 .homework_box {
-    display: flex;
-    align-items: center;
-    flex-wrap: wrap;
+  display: flex;
+  align-items: center;
+  flex-wrap: wrap;
 }
 
 .course_homework {
-    width: 130px;
-    display: flex;
-    justify-content: center;
-    flex-direction: column;
-    align-items: center;
-    margin: 0 10px 10px 0;
+  width: 130px;
+  display: flex;
+  justify-content: center;
+  flex-direction: column;
+  align-items: center;
+  margin: 0 10px 10px 0;
 }
 
 .course_type {
-    margin-top: 10px;
-    display: flex;
+  margin-top: 10px;
+  display: flex;
 }
 
 .course_type1 span {
-    margin-bottom: 10px;
-    display: block;
+  margin-bottom: 10px;
+  display: block;
 }
 
 .course_type2 {
-    margin-left: 20px;
+  margin-left: 20px;
 }
 
 .course_type2 span {
-    margin-bottom: 10px;
-    display: block;
+  margin-bottom: 10px;
+  display: block;
 }
 
 .course_empty {
-    color: rgb(110, 110, 110);
-    width: 100%;
-    height: 100%;
-    display: flex;
-    align-items: center;
-    justify-content: center;
+  color: rgb(110, 110, 110);
+  width: 100%;
+  height: 100%;
+  display: flex;
+  align-items: center;
+  justify-content: center;
 }
 
-.el_cards>>>.el-card__body {
-    height: 100%;
+.el_cards >>> .el-card__body {
+  height: 100%;
 }
 
 .courseBtnBox {
-    display: flex;
-    flex-direction: column;
-    justify-content: space-between;
-    height: calc(100% - 170px);
-    padding: 10px;
+  display: flex;
+  flex-direction: column;
+  justify-content: space-between;
+  height: calc(100% - 170px);
+  padding: 10px;
 }
 
 .wordUpload {
-    display: flex;
+  display: flex;
 }
 
-.wordUpload>.buttonUp {
-    margin-right: 5px;
+.wordUpload > .buttonUp {
+  margin-right: 5px;
 }
 
 .out_box {
-    display: flex;
-    flex-direction: column;
-    flex-wrap: nowrap;
-    width: 250px;
-    background: #fff;
-    margin-right: 25px;
-    border: 1px solid #ccc;
-    height: fit-content;
-    box-sizing: border-box;
-    border-radius: 0px 0px 5px 5px;
-    /* overflow: hidden; */
-    margin-bottom: 15px;
-    position: relative;
-    padding-top: 10px;
+  display: flex;
+  flex-direction: column;
+  flex-wrap: nowrap;
+  width: 250px;
+  background: #fff;
+  margin-right: 25px;
+  border: 1px solid #ccc;
+  height: fit-content;
+  box-sizing: border-box;
+  border-radius: 0px 0px 5px 5px;
+  /* overflow: hidden; */
+  margin-bottom: 15px;
+  position: relative;
+  padding-top: 10px;
 }
 
 .bottom_box {
-    display: flex;
-    padding: 0 0 10px 10px;
-    flex-direction: column;
-    box-sizing: border-box;
-    height: 140px;
-    flex-wrap: nowrap;
-    justify-content: space-evenly;
+  display: flex;
+  padding: 0 0 10px 10px;
+  flex-direction: column;
+  box-sizing: border-box;
+  height: 140px;
+  flex-wrap: nowrap;
+  justify-content: space-evenly;
+}
+
+.bottom_box > .title {
+  width: 230px;
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+}
+
+.bottom_box > .title > span:nth-child(1) {
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  font-weight: bold;
+  font-size: 18px;
+  width: 100%;
+}
+
+.bottom_box > .title > span:nth-child(2) {
+  font-size: 14px;
+  min-width: 60px;
+  border: 1px solid;
+  text-align: center;
+  padding: 3px 0;
+  /* margin-left: 10px; */
 }
 
-.bottom_box>div:nth-child(1) {
-    width: 230px;
-    overflow: hidden;
-    text-overflow: ellipsis;
-    white-space: nowrap;
-    font-weight: bold;
-    font-size: 18px;
+.bottom_box > .title > .is{
+    color: rgb(0, 182, 0);
+}
+
+.bottom_box > .title > .no{
+    color: rgb(240, 66, 66);
 }
 
 .tup {
-    width: 100%;
-    height: 141.06px;
-    margin: 0 auto;
-    overflow: hidden;
-    display: flex;
-    align-items: center;
+  width: 100%;
+  height: 141.06px;
+  margin: 0 auto;
+  overflow: hidden;
+  display: flex;
+  align-items: center;
 }
 
-.tup>img {
-    width: 100%;
-    height: 100%;
-    object-fit: contain;
+.tup > img {
+  width: 100%;
+  height: 100%;
+  object-fit: contain;
 }
 
 .kc_time {
-    margin-top: 8px;
-    font-size: 14px;
-    color: #999;
+  margin-top: 8px;
+  font-size: 14px;
+  color: #999;
 }
 
 .kc_t {
-    margin-top: 5px;
-    width: 100%;
-    white-space: nowrap;
-    overflow: hidden;
-    text-overflow: ellipsis;
+  margin-top: 5px;
+  width: 100%;
+  white-space: nowrap;
+  overflow: hidden;
+  text-overflow: ellipsis;
 }
 
 .three_bottom {
-    display: flex;
-    flex-direction: row;
-    justify-content: space-around;
-    height: 40px;
-    align-items: center;
-    background: #f5f4f4;
-    font-size: 14px;
+  display: flex;
+  flex-direction: row;
+  justify-content: space-around;
+  height: 40px;
+  align-items: center;
+  background: #f5f4f4;
+  font-size: 14px;
 }
 
-.three_bottom>div {
-    cursor: pointer;
+.three_bottom > div {
+  cursor: pointer;
 }
 
-.three_bottom>div:hover {
-    color: #79a2ff;
+.three_bottom > div:hover {
+  color: #79a2ff;
 }
 
 .head_left {
-    display: flex;
+  display: flex;
 }
 
-.student_input>>>.el-input__inner {
-    height: 40px;
-    width: 190px;
-    font-size: 13px;
-    padding: 0 10px;
+.student_input >>> .el-input__inner {
+  height: 40px;
+  width: 190px;
+  font-size: 13px;
+  padding: 0 10px;
 }
 
 .course_button {
-    color: #fff;
-    background: #2268bc;
-    width: 75px;
-    height: 40px;
-    padding: 0 !important;
-    font-size: 12px;
-    line-height: 40px;
+  color: #fff;
+  background: #2268bc;
+  width: 75px;
+  height: 40px;
+  padding: 0 !important;
+  font-size: 12px;
+  line-height: 40px;
 }
 
 .all_choose {
-    margin: 15px 0 10px;
-    height: 20%;
-    display: flex;
-    flex-direction: row;
-    align-items: center;
-    max-width: calc(100% / 3 - 50px);
+  margin: 15px 0 10px;
+  height: 20%;
+  display: flex;
+  flex-direction: row;
+  align-items: center;
+  max-width: calc(100% / 3 - 50px);
 }
 
-.all_choose>span {
-    min-width: 75px;
-    display: block;
-    margin-right: 10px;
-    text-align-last: justify;
+.all_choose > span {
+  min-width: 75px;
+  display: block;
+  margin-right: 10px;
+  text-align-last: justify;
 }
 
 .choose {
-    display: flex;
-    flex-direction: row;
-    flex-wrap: wrap;
-    align-content: space-between;
-    height: 100%;
-    justify-content: flex-start;
-    width: 60%;
-    min-width: 868px;
-    align-items: center;
+  display: flex;
+  flex-direction: row;
+  flex-wrap: wrap;
+  align-content: space-between;
+  height: 100%;
+  justify-content: flex-start;
+  width: 60%;
+  min-width: 868px;
+  align-items: center;
 }
 
-.choose>div:nth-child(2) {
-    margin-left: 1%;
-    width: 32.33333%;
+.choose > div:nth-child(2) {
+  margin-left: 1%;
+  width: 32.33333%;
 }
 
-.choose>div:nth-child(3) {
-    margin-left: 1%;
-    width: 32.33333%;
+.choose > div:nth-child(3) {
+  margin-left: 1%;
+  width: 32.33333%;
 }
 
-.choose>div:nth-child(5) {
-    margin: 5px 0 0 1%;
+.choose > div:nth-child(5) {
+  margin: 5px 0 0 1%;
 }
 
-.choose>div:nth-child(4)>span {
-    /* width: 74px !important;
+.choose > div:nth-child(4) > span {
+  /* width: 74px !important;
     min-width: 74px; */
 }
 
-.choose>div:nth-child(4)>>>.el-select {
-    /* width: 217.5px;
+.choose > div:nth-child(4) >>> .el-select {
+  /* width: 217.5px;
     min-width: 215.06px; */
 }
 
 .clear {
-    width: 70px;
-    max-width: 70px;
-    height: 35px;
-    background: #2268bc;
-    color: #fff;
-    text-align: center;
-    border-radius: 5px;
-    line-height: 35px;
-    cursor: pointer;
-    margin-left: 20px;
+  width: 70px;
+  max-width: 70px;
+  height: 35px;
+  background: #2268bc;
+  color: #fff;
+  text-align: center;
+  border-radius: 5px;
+  line-height: 35px;
+  cursor: pointer;
+  margin-left: 20px;
 }
 
 .ct_box {
-    height: 500px;
-    overflow: auto;
-    display: flex;
-    flex-wrap: wrap;
+  height: 500px;
+  overflow: auto;
+  display: flex;
+  flex-wrap: wrap;
 }
 
 .myCourse {
-    position: absolute;
-    background: #3c3c3c;
-    width: 65px;
-    height: 25px;
-    color: #fff;
-    font-size: 12px;
-    text-align: center;
-    line-height: 25px;
-    top: 0;
-    right: 0;
+  position: absolute;
+  background: #3c3c3c;
+  width: 65px;
+  height: 25px;
+  color: #fff;
+  font-size: 12px;
+  text-align: center;
+  line-height: 25px;
+  top: 0;
+  right: 0;
 }
 
 .xtCourse {
-    position: absolute;
-    background: #466b99;
-    width: 70px;
-    height: 30px;
-    border-radius: 30px;
-    color: #fff;
-    font-size: 14px;
-    text-align: center;
-    line-height: 30px;
-    top: 5px;
-    left: 5px;
+  position: absolute;
+  background: #466b99;
+  width: 70px;
+  height: 30px;
+  border-radius: 30px;
+  color: #fff;
+  font-size: 14px;
+  text-align: center;
+  line-height: 30px;
+  top: 5px;
+  left: 5px;
 }
 
 .subClick {
-    font-size: 16px;
-    cursor: pointer;
-    margin-left: 10px;
-    /* color: #ab582f; */
-    color: #409eff;
+  font-size: 16px;
+  cursor: pointer;
+  margin-left: 10px;
+  /* color: #ab582f; */
+  color: #409eff;
 }
 
 .more {
-    position: relative;
-
+  position: relative;
 }
 
 .more:hover div {
-    display: block;
-    color: #000;
+  display: block;
+  color: #000;
 }
 
 .more div {
-    position: absolute;
-    bottom: 0px;
-    transform: translate(-50%, 100%);
-    background: #f5f4f4;
-    padding: 10px 20px;
-    z-index: 99;
-    width: 40px;
-    border-radius: 5px;
-    box-shadow: 0 0 3px 3px #80808020;
-    display: none;
+  position: absolute;
+  bottom: 0px;
+  transform: translate(-50%, 100%);
+  background: #f5f4f4;
+  padding: 10px 20px;
+  z-index: 99;
+  width: 40px;
+  border-radius: 5px;
+  box-shadow: 0 0 3px 3px #80808020;
+  display: none;
 }
 
-.more div>span+span {
-    margin-top: 10px;
+.more div > span + span {
+  margin-top: 10px;
 }
 
-.more div>span {
-    display: block;
-    width: 100%;
-    text-align: center;
+.more div > span {
+  display: block;
+  width: 100%;
+  text-align: center;
 }
 
-.more div>span:hover {
-    color: #79a2ff;
-}</style>
+.more div > span:hover {
+  color: #79a2ff;
+}
+</style>
   

+ 215 - 0
src/components/pages/testStudent/view/check.vue

@@ -0,0 +1,215 @@
+<template>
+  <div class="pb_content" style="background: #F0F2F5;" v-loading="loading">
+    <div class="pb_content_body" style="position: relative; margin: 0">
+      <div class="right">
+        <div class="courseTop">
+          <div class="stepsNav">
+            <el-breadcrumb separator-class="el-icon-arrow-right">
+              <el-breadcrumb-item :to="{
+                path:
+                  '/testStudent?userid=' +
+                  userid +
+                  '&oid=' +
+                  oid +
+                  '&org=' +
+                  org +
+                  '&role=' +
+                  role,
+              }">评测中心</el-breadcrumb-item>
+              <el-breadcrumb-item>
+                <span style="color: rgb(15, 126, 255)">{{ title }}</span>
+              </el-breadcrumb-item>
+            </el-breadcrumb>
+          </div>
+          <div class="r_pub_button_retrun" @click="retrunCourse">返回</div>
+        </div>
+        <div class="step_box">
+          <div class="edit_top">
+            <div class="op_btn">
+            </div>
+          </div>
+          <topicVue :cJson="cJson" :title="title" :checktype='2'></topicVue>
+        </div>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+import topicVue from './component/topic.vue';
+export default {
+  components: {
+    topicVue
+  },
+  data() {
+    return {
+      userid: this.$route.query.userid,
+      oid: this.$route.query.oid,
+      org: this.$route.query.org,
+      role: this.$route.query.role,
+      cid: this.$route.query.cid,
+      steps: 1,
+      title: "",
+      testType: [],
+      see: false,
+      cJson: [],
+      loading: false,
+      look: "",
+    }
+  },
+  methods: {
+    retrunCourse() {
+      this.goTo(
+        "/testStudent?userid=" +
+          this.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&role=" +
+          this.role
+      );
+    },
+    goTo(path) {
+      this.$router.push(path);
+    },
+
+    getData() {
+      this.loading = true
+      let params = {
+        cid: this.cid,
+        uid: this.userid,
+      };
+      this.ajax
+        .get(this.$store.state.api + "getTestWorks", params)
+        .then((res) => {
+          // this.cJson = JSON.parse(res.data[0][0].chapters);
+          this.$forceUpdate();
+          this.title = res.data[0][0].title;
+
+          this.testType = [];
+          for (var i = 0; i < res.data[1].length; i++) {
+            this.testType.push(res.data[1][i].typeid);
+          }
+          console.log(this.testType);
+          this.look = res.data[0][0].look
+
+          
+          this.cJson = JSON.parse(res.data[2][0].courseJson)
+          this.loading = false
+
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+    save(){
+      this.$message.success('保存成功')
+      this.goTo(
+            "/testStudent?userid=" +
+            this.userid +
+            "&oid=" +
+            this.oid +
+            "&org=" +
+            this.org +
+            "&role=" +
+            this.role
+          );
+    },
+    publish(){
+      let params = [
+        {
+          uid: this.userid,
+          cid: this.cid,
+          cjson: JSON.stringify(this.cJson),
+          type:'2',
+        },
+      ];
+      this.ajax
+        .post(this.$store.state.api + "addTestWorks", params)
+        .then((res) => {
+          this.$message.success('提交成功')
+          this.goTo(
+                "/testStudent?userid=" +
+                this.userid +
+                "&oid=" +
+                this.oid +
+                "&org=" +
+                this.org +
+                "&role=" +
+                this.role
+              );
+        })
+        .catch((err) => {
+          this.$message.error("网络不佳");
+          console.error(err);
+        });
+    },
+
+  },
+  mounted() {
+    this.getData();
+  },
+}
+</script>
+
+<style scoped>
+.pb_content {
+  height: 100% !important;
+  /* margin: 0 20px 0 20px; */
+}
+
+.pb_content_body {
+  width: 100% !important;
+  height: 100%;
+}
+
+.right {
+  height: 100%;
+  width: 100%;
+  display: flex;
+  overflow: hidden;
+  flex-direction: column;
+}
+
+.basic_box {
+  margin: 0 auto;
+  position: relative;
+  padding: 0 20px 0 20px;
+}
+
+.courseTop {
+  display: flex;
+  flex-direction: row;
+  justify-content: space-between;
+  align-items: center;
+  width: calc(100% - 40px);
+  margin: 0 auto;
+  padding: 10px 0;
+}
+
+.stepsNav {
+  display: flex;
+  flex-direction: row;
+  justify-content: flex-start;
+  align-items: center;
+}
+
+.step_box {
+  width: calc(100%);
+  margin: 0 auto;
+  height: calc(100% - 38px);
+}
+
+.edit_top {
+  height: 50px;
+  background: #fff;
+  display: flex;
+  align-items: center;
+  justify-content: flex-end;
+  position: relative;
+  padding: 0 30px;
+  border-top: 2px solid #eee;
+  border-bottom: 2px solid #eee;
+}
+</style>

+ 27 - 2
src/components/pages/testStudent/view/component/choice.vue

@@ -6,8 +6,8 @@
             <div class="title">{{ `(${option[checkJson.type].name})` + checkJson.title }}</div>
             <div class="choices">
                 <div class="choice" v-for="(item, index) in checkJson.array" :key="index">
-                    <div class="choice_c" v-if="checkJson.type == 2"><el-checkbox v-model="checkJson.answer2" :label="index"></el-checkbox><span @click="check(checkJson.type,index)">{{ item.option }}</span></div>
-                    <div class="choice_c" v-if="checkJson.type == 1"><el-radio v-model="checkJson.answer2[0]" :label="index"></el-radio><span @click="check(checkJson.type,index)">{{ item.option }}</span></div>
+                    <div class="choice_c" v-if="checkJson.type == 2"><el-checkbox v-model="checkJson.answer2" :label="index" :disabled="checktype == 2"></el-checkbox><span @click="check(checkJson.type,index)">{{ item.option }}</span></div>
+                    <div class="choice_c" v-if="checkJson.type == 1"><el-radio v-model="checkJson.answer2[0]" :label="index" :disabled="checktype == 2"></el-radio><span @click="check(checkJson.type,index)">{{ item.option }}</span></div>
                 </div>
             </div>
         </div>
@@ -20,6 +20,10 @@ export default {
         cJson: {
             type: Object,
         },
+        checktype: {
+            type: Number,
+            default: 1
+        }
     },
     data() {
         return {
@@ -43,6 +47,9 @@ export default {
             return JSON.parse(JSON.stringify(s));
         },
         check(type,index){
+            if(this.checktype == 2){
+                return;
+            }
             if(type == 2){
                 if(this.checkJson.answer2.indexOf(index) == -1){
                     this.checkJson.answer2.push(index)
@@ -120,4 +127,22 @@ export default {
 .choice_c .right::after{
     content: '(正确答案)';
 }
+
+.choice_box>.choices >.choice >>> .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after{
+    border-color: #fff !important;
+}
+
+.choice_box>.choices >.choice >>> .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{
+    background-color: #409EFF !important;
+    border-color: #409EFF !important;
+}
+
+.choice_box>.choices >.choice >>> .el-radio__input.is-disabled.is-checked .el-radio__inner{
+    background-color: #409EFF !important;
+    border-color: #409EFF !important;
+}
+
+.choice_box>.choices >.choice >>> .el-radio__input.is-disabled.is-checked .el-radio__inner::after{
+    background-color: #fff !important;
+}
 </style>

+ 94 - 56
src/components/pages/testStudent/view/component/topic.vue

@@ -3,38 +3,72 @@
     <div class="c_box_title">{{ title }}</div>
     <div class="c_body">
       <div v-if="type == 3">
-        <div v-for="(item, index) in checkArray[page].array" :key="index" class="check_box">
+        <div
+          v-for="(item, index) in checkArray[page].array"
+          :key="index"
+          class="check_box"
+        >
           <div class="title">{{ selectType(item, index) }}</div>
-          <div v-if="item.ttype == 1" class="answerBox"><choiceV :cJson.sync="item.json"></choiceV></div>
-          <div v-for="(item2, index2) in item.array" :key="`${index}-${index2}`" class="check_box_xia">
+          <div v-if="item.ttype == 1" class="answerBox">
+            <choiceV :cJson.sync="item.json" :checktype="checktype"></choiceV>
+          </div>
+          <div
+            v-for="(item2, index2) in item.array"
+            :key="`${index}-${index2}`"
+            class="check_box_xia"
+          >
             <div class="title">{{ selectType(item2, index2) }}</div>
-            <div v-if="item2.ttype == 1" class="answerBox"><choiceV :cJson.sync="item2.json"></choiceV></div>
+            <div v-if="item2.ttype == 1" class="answerBox">
+              <choiceV :cJson.sync="item2.json" :checktype="checktype"></choiceV>
+            </div>
           </div>
         </div>
       </div>
       <div v-else>
         <div v-for="(item, index) in checkArray" :key="index" class="check_box">
           <div class="title">{{ selectType(item, index) }}</div>
-          <div v-if="item.ttype == 1" class="answerBox"><choiceV :cJson.sync="item.json"></choiceV></div>
-          <div v-for="(item2, index2) in item.array" :key="`${index}-${index2}`" class="check_box_xia">
+          <div v-if="item.ttype == 1" class="answerBox">
+            <choiceV :cJson.sync="item.json" :checktype="checktype"></choiceV>
+          </div>
+          <div
+            v-for="(item2, index2) in item.array"
+            :key="`${index}-${index2}`"
+            class="check_box_xia"
+          >
             <div class="title">{{ selectType(item2, index2) }}</div>
-            <div v-if="item2.ttype == 1" class="answerBox"><choiceV :cJson.sync="item2.json"></choiceV></div>
+            <div v-if="item2.ttype == 1" class="answerBox">
+              <choiceV :cJson.sync="item2.json" :checktype="checktype"></choiceV>
+            </div>
           </div>
         </div>
       </div>
 
       <div v-if="checkArray.length > 1 && type == 3" class="page">
-        <el-button type="primary" size="mini" :disabled="page == 0" @click="page--">上一页</el-button>
-        <div class="p_page"><span>{{ page + 1 }}</span><span>/</span><span>{{ checkArray.length }}</span></div>
-        <el-button type="primary" size="mini" :disabled="page == (checkArray.length - 1)" @click="page++">下一页</el-button>
-
+        <el-button
+          type="primary"
+          size="mini"
+          :disabled="page == 0"
+          @click="page--"
+          >上一页</el-button
+        >
+        <div class="p_page">
+          <span>{{ page + 1 }}</span
+          ><span>/</span><span>{{ checkArray.length }}</span>
+        </div>
+        <el-button
+          type="primary"
+          size="mini"
+          :disabled="page == checkArray.length - 1"
+          @click="page++"
+          >下一页</el-button
+        >
       </div>
     </div>
   </div>
 </template>
 
 <script>
-import choiceV from './choice.vue';
+import choiceV from "./choice.vue";
 export default {
   props: {
     cJson: {
@@ -42,10 +76,14 @@ export default {
     },
     title: {
       type: String,
-    }
+    },
+    checktype: {
+      type: Number,
+      default: 1,
+    },
   },
   components: {
-    choiceV
+    choiceV,
   },
   data() {
     return {
@@ -56,9 +94,9 @@ export default {
         1: "选择题",
         2: "问答题",
         3: "填空题",
-        4: "添加文档"
+        4: "添加文档",
       },
-    }
+    };
   },
   computed: {
     selectType() {
@@ -71,17 +109,17 @@ export default {
           return `分页${index + 1}`;
         }
       };
-    }
+    },
   },
   watch: {
     cJson: {
       handler(newVal, oldVal) {
         console.log(newVal);
         console.log(oldVal);
-        this.checkArray = this.setJson(this.depthCopy(newVal))
+        this.checkArray = this.setJson(this.depthCopy(newVal));
       },
-      deep: true
-    }
+      deep: true,
+    },
   },
   methods: {
     depthCopy(s) {
@@ -89,42 +127,44 @@ export default {
     },
     setJson(json) {
       if (json.length > 0) {
-        let _json = this.depthCopy(json)
-        this.type = _json[0].ttype
-        let checkArray = _json.filter(item => {
+        let _json = this.depthCopy(json);
+        this.type = _json[0].ttype;
+        let checkArray = _json.filter((item) => {
           if (item.array) {
-            item.array = item.array.filter(item2 => {
+            item.array = item.array.filter((item2) => {
               if (item2.ttype == 1 && item2.json && !item2.json.answer2) {
-                item2.json.answer2 = []
+                item2.json.answer2 = [];
               }
               if (item2.array) {
-                  item2.array = item2.array.filter(item3 => {
-                    if (item3.ttype == 1 && item3.json && !item3.json.answer2) {
-                      item3.json.answer2 = []
-                    }
-                    return item3
-                  })
-                }
-              return (item2.ttype != 1 && item2.array.length > 0) || (item2.ttype == 1)
-            })
+                item2.array = item2.array.filter((item3) => {
+                  if (item3.ttype == 1 && item3.json && !item3.json.answer2) {
+                    item3.json.answer2 = [];
+                  }
+                  return item3;
+                });
+              }
+              return (
+                (item2.ttype != 1 && item2.array.length > 0) || item2.ttype == 1
+              );
+            });
           }
           if (item.ttype == 1 && item.json && !item.json.answer2) {
-            item.json.answer2 = []
+            item.json.answer2 = [];
           }
           console.log(item.array);
-          return (item.ttype != 1 && item.array.length > 0) || (item.ttype == 1)
-        })
+          return (item.ttype != 1 && item.array.length > 0) || item.ttype == 1;
+        });
         console.log(checkArray);
-        return checkArray
+        return checkArray;
       } else {
-        return []
+        return [];
       }
-    }
+    },
   },
   mounted() {
-    this.checkArray = this.setJson(this.depthCopy(this.cJson))
+    this.checkArray = this.setJson(this.depthCopy(this.cJson));
   },
-}
+};
 </script>
 
 <style scoped>
@@ -150,46 +190,44 @@ export default {
   margin: 0 auto;
 }
 
-.check_box{
-
+.check_box {
 }
-.check_box + .check_box{
+.check_box + .check_box {
   margin-top: 10px;
 }
-.check_box > .title{
-  font-size:20px;
+.check_box > .title {
+  font-size: 20px;
   word-break: break-all;
   font-weight: bold;
 }
-.check_box > .answerBox{
+.check_box > .answerBox {
   margin-top: 10px;
-
 }
-.check_box > .noanswerBox{
+.check_box > .noanswerBox {
   margin-top: 10px;
 }
-.check_box_xia{
+.check_box_xia {
   margin-top: 10px;
 }
 
-.check_box_xia > .title{
+.check_box_xia > .title {
   font-size: 18px;
   font-weight: bold;
 }
-.check_box_xia > .answerBox{
+.check_box_xia > .answerBox {
   margin-top: 10px;
 }
-.check_box_xia > .noanswerBox{
+.check_box_xia > .noanswerBox {
   margin-top: 10px;
 }
 
-.page{
+.page {
   margin: 20px;
   display: flex;
   align-items: center;
 }
 
-.p_page{
+.p_page {
   margin: 0 10px;
 }
 </style>

+ 30 - 12
src/components/pages/testStudent/view/preview.vue

@@ -30,7 +30,7 @@
               <el-button type="primary" size="small" @click="publish">提交</el-button>
             </div>
           </div>
-          <topicVue :cJson="cJson" :title="title"></topicVue>
+          <topicVue :cJson="cJson" :title="title" ref="topicVue"></topicVue>
         </div>
       </div>
     </div>
@@ -130,17 +130,35 @@ export default {
           );
     },
     publish(){
-      this.$message.success('提交成功')
-      this.goTo(
-            "/testStudent?userid=" +
-            this.userid +
-            "&oid=" +
-            this.oid +
-            "&org=" +
-            this.org +
-            "&role=" +
-            this.role
-          );
+      let cjson = this.$refs['topicVue'].checkArray
+      console.log(cjson);
+      let params = [
+        {
+          uid: this.userid,
+          cid: this.cid,
+          cjson: JSON.stringify(cjson),
+          type:'2',
+        },
+      ];
+      this.ajax
+        .post(this.$store.state.api + "addTestWorks", params)
+        .then((res) => {
+          this.$message.success('提交成功')
+          this.goTo(
+                "/testStudent?userid=" +
+                this.userid +
+                "&oid=" +
+                this.oid +
+                "&org=" +
+                this.org +
+                "&role=" +
+                this.role
+              );
+        })
+        .catch((err) => {
+          this.$message.error("网络不佳");
+          console.error(err);
+        });
     },
 
   },

+ 24 - 0
src/router/index.js

@@ -103,6 +103,9 @@ import test from '@/components/pages/test/index'
 import addTest from '@/components/pages/test/add/addTest'
 import testStudent from '@/components/pages/testStudent/index'
 import doTest from '@/components/pages/testStudent/view/preview'
+import checkTest from '@/components/pages/testStudent/view/check'
+import checkToTest from '@/components/pages/test/check'
+import checkTest2 from '@/components/pages/test/check/check.vue'
 
 
 // 全局修改默认配置,点击空白处不能关闭弹窗
@@ -875,6 +878,27 @@ export default new Router({
                 requireAuth: '' // 是否需要判断是否登录,这里是需要判断
             }
         },
+        {
+            path: '/checkTest',
+            component: checkTest,
+            meta: {
+                requireAuth: '' // 是否需要判断是否登录,这里是需要判断
+            }
+        },
+        {
+            path: '/checkTest2',
+            component: checkTest2,
+            meta: {
+                requireAuth: '' // 是否需要判断是否登录,这里是需要判断
+            }
+        },
+        {
+            path: '/checkToTest',
+            component: checkToTest,
+            meta: {
+                requireAuth: '' // 是否需要判断是否登录,这里是需要判断
+            }
+        },
         {
             path: '/addTest',
             component: addTest,

部分文件因为文件数量过多而无法显示