瀏覽代碼

Merge branch 'beta' into HK

lsc 1 年之前
父節點
當前提交
14d32f9e77

+ 4 - 0
dist/index.html

@@ -18,7 +18,11 @@
       border-radius: 10px;
       -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
       background-color: rgba(0, 0, 0, 0.1);
+<<<<<<< HEAD
     }</style><link href=./static/css/app.115ed5f96c115121e0a43a4f4d89bbae.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.e272a0df0fb3ce5b6fea.js></script><script type=text/javascript src=./static/js/app.ffa687069614d8908376.js></script></body></html><script>function stopSafari() {
+=======
+    }</style><link href=./static/css/app.b43b14e97a6267fdec809c464e40eb17.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.e81042531bab735dba9a.js></script><script type=text/javascript src=./static/js/app.2b0fae7477d35fa623c6.js></script></body></html><script>function stopSafari() {
+>>>>>>> beta
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

文件差異過大導致無法顯示
+ 1 - 0
dist/static/css/app.115ed5f96c115121e0a43a4f4d89bbae.css


文件差異過大導致無法顯示
+ 0 - 0
dist/static/css/app.115ed5f96c115121e0a43a4f4d89bbae.css.map


文件差異過大導致無法顯示
+ 1 - 0
dist/static/css/app.b43b14e97a6267fdec809c464e40eb17.css


文件差異過大導致無法顯示
+ 0 - 0
dist/static/css/app.b43b14e97a6267fdec809c464e40eb17.css.map


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.2b0fae7477d35fa623c6.js


文件差異過大導致無法顯示
+ 1 - 0
dist/static/js/app.2b0fae7477d35fa623c6.js.map


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.ffa687069614d8908376.js.map


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/manifest.3ad1d5771e9b13dbdad2.js.map


+ 2 - 2
src/components/GM/studyStudentGM.vue

@@ -2552,7 +2552,7 @@
 
         <div>
           <textarea rows="3" class="pj" style="padding: 10px 5px" cols v-model="commentText"
-            placeholder="请输入对该学生的评价"></textarea>
+            placeholder="请输入评论"></textarea>
         </div>
       </div>
 
@@ -3536,7 +3536,7 @@ export default {
     },
     addComment(wid, uid, t) {
       if (this.commentText == "") {
-        this.$message.error("请输入对该学生的评价");
+        this.$message.error("请输入评论");
         return;
       }
       let params2 = [

+ 5 - 5
src/components/courseDetail.vue

@@ -127,7 +127,7 @@
                   </div>
                 </div>
               </div>
-              <div class="btnBox" v-if="courseDetail.state == 1">
+              <div class="btnBox">
                 <!-- <div class="now_study" @click="dialogVisible = true">
                   立即学习
                 </div> -->
@@ -138,15 +138,15 @@
                 >
                   生成二维码
                 </div>
-                <div class="now_study" @click="dialogVisibleGroup = true">
+                <div class="now_study" @click="dialogVisibleGroup = true" v-if="courseDetail.state == 1">
                   {{
-                    courseDetail.userid != userid &&
-                    courseDetail.course_teacher.indexOf(userid) == -1
+                    (courseDetail.userid != userid &&
+                    courseDetail.course_teacher && courseDetail.course_teacher.indexOf(userid) == -1)
                       ? "加入分组"
                       : "设置分组"
                   }}
                 </div>
-                <div class="now_group" v-if="groupInfo">
+                <div class="now_group" v-if="groupInfo && courseDetail.state == 1">
                   <span>所在分组:</span>{{ groupInfo.name }}
                 </div>
               </div>

+ 2 - 2
src/components/easy/studyStudent.vue

@@ -1450,7 +1450,7 @@
 
         <div>
           <textarea rows="3" class="pj" style="padding: 10px 5px" cols v-model="commentText"
-            placeholder="请输入对该学生的评价"></textarea>
+            placeholder="请输入评论"></textarea>
         </div>
       </div>
 
@@ -3852,7 +3852,7 @@ export default {
     },
     addComment(wid, uid, t) {
       if (this.commentText == "") {
-        this.$message.error("请输入对该学生的评价");
+        this.$message.error("请输入评论");
         return;
       }
       let params2 = [

文件差異過大導致無法顯示
+ 1512 - 84
src/components/easy2/studyStudent.vue


文件差異過大導致無法顯示
+ 1510 - 82
src/components/easy3/studyStudent.vue


+ 33 - 1
src/components/group/group.vue

@@ -32,6 +32,10 @@
                             <span>开放选座</span>
                             <el-switch v-model="islock" active-text="" class="switchCss" @change="lockChair"></el-switch>
                         </div>
+                        <div class="group_switch">
+                            <span>开启分组</span>
+                            <el-switch v-model="isopen" class="switchCss" @change="openChair"></el-switch>
+                        </div>
                         <div type="primary" @click="updateGroup" class="returnBtn" style="background-color: #225bc7">
                             分组设置
                         </div>
@@ -408,6 +412,7 @@ export default {
                 islock: 1,
             },
             islock: false,
+            isopen:true,
             timer: null,
             groupStudent: {},
             groupStudentUid: {},
@@ -474,6 +479,7 @@ export default {
                 islock: 1,
             }
             this.islock = false
+            this.isopen = true
             this.getCourseGroup();
         },
         guid() {
@@ -524,6 +530,7 @@ export default {
                                 islock: 1,
                             }
                             this.islock = false
+                            this.isopen = true
                             this.$message.success("操作成功");
                             this.getCourseGroup();
                             this.$forceUpdate()
@@ -545,7 +552,27 @@ export default {
         },
         lockChair() {
             this.groupJson2 = JSON.parse(JSON.stringify(this.groupJson));
-            this.groupJson2.islock = this.groupJson2.islock == 1 ? 2 : 1;
+            if(this.groupJson2.isopen == 2){
+                this.$message.error("请开启分组后才能开放选座")
+                this.islock = false
+                return
+            }else{
+                this.groupJson2.islock = this.groupJson2.islock == 1 ? 2 : 1;
+            }
+            this.updateGroupJson();
+        },
+        openChair() {
+            this.groupJson2 = JSON.parse(JSON.stringify(this.groupJson));
+            if(!this.groupJson2.isopen){
+                this.groupJson2.isopen = 2;
+            }else{
+                this.groupJson2.isopen = this.groupJson2.isopen == 1 ? 2 : 1;
+            }
+            if(this.groupJson2.isopen == 2){
+                this.groupJson2.islock = 2
+            }else{
+                this.groupJson2.islock = 1
+            }
             this.updateGroupJson();
         },
         updateGroupJson() {
@@ -600,6 +627,11 @@ export default {
                     if (res.data && res.data[0].length) {
                         this.groupJson = JSON.parse(res.data[0][0].group);
                         this.islock = this.groupJson.islock == 1 ? true : false;
+                        if(!this.groupJson.isopen){
+                            this.isopen = true
+                        }else{
+                            this.isopen = this.groupJson.isopen == 1 ? true : false;
+                        }
                         this.groupid = res.data[0][0].id;
                         let groupPerson = res.data[1]
                         let group = JSON.parse(res.data[0][0].group).group

+ 2 - 2
src/components/noTerminal/studyStudent.vue

@@ -4037,7 +4037,7 @@
 
         <div>
           <textarea rows="3" class="pj" style="padding: 10px 5px" cols v-model="commentText"
-            placeholder="请输入对该学生的评价"></textarea>
+            placeholder="请输入评论"></textarea>
         </div>
       </div>
 
@@ -6420,7 +6420,7 @@ export default {
     },
     addComment(wid, uid, t) {
       if (this.commentText == "") {
-        this.$message.error("请输入对该学生的评价");
+        this.$message.error("请输入评论");
         return;
       }
       let params2 = [

+ 2 - 2
src/components/study.vue

@@ -3052,7 +3052,7 @@
             style="padding: 10px 5px"
             cols
             v-model="commentText"
-            placeholder="请输入对该学生的评价"
+            placeholder="请输入评论"
           ></textarea>
         </div>
       </div>
@@ -3832,7 +3832,7 @@ export default {
     },
     addComment(wid, uid, t) {
       if (this.commentText == "") {
-        this.$message.error("请输入对该学生的评价");
+        this.$message.error("请输入评论");
         return;
       }
       let params = [

+ 196 - 59
src/components/studyStudent.vue

@@ -136,7 +136,7 @@
             .taskJson"
         :key="index"-->
         <div class="isNoMessage" v-if="chapInfoList[courseType].chapterInfo[0].taskJson[taskCount]
-            .chapterData.length == 0 &&
+          .chapterData.length == 0 &&
           chapInfoList[courseType].chapterInfo[0].taskJson[taskCount]
             .toolChoose[0].tool.length == 0 &&
           chapInfoList[courseType].chapterInfo[0].video.length == 0 &&
@@ -148,8 +148,8 @@
         </div>
         <div class="study_top" :class="{ pzClass: pzDialog }">
           <div class="vedioBox" v-if="chapInfoList[courseType].chapterInfo[0].taskJson[taskCount]
-              .taskDetail != '' ||
-            vChapterData[taskCount].length > 0
+            .taskDetail != '' ||
+            vChapterData[taskCount].length > 0 || fileC[taskCount].length > 0
             ">
             <div class="checkbox">
               <div class="check" style="font-size: 25px" :id="chapInfoList[courseType].chapterInfo[0].taskJson[taskCount].id
@@ -159,7 +159,7 @@
                 学一学
               </div>
             </div>
-            <div class="student_head" v-if="vChapterData[taskCount].length > 0 ||
+            <div class="student_head" v-if="vChapterData[taskCount].length > 0 || fileC[taskCount].length > 0 ||
               chapInfoList[courseType].chapterInfo[0].taskJson[taskCount]
                 .taskDetail != ''
               ">
@@ -175,15 +175,15 @@
                       line-height: 29px;
                       font-size: 18px;
                     " class="cont" v-if="chapInfoList[courseType].chapterInfo[0].taskJson[
-                        taskCount
-                      ].taskDetail != ''
+                      taskCount
+                    ].taskDetail != ''
                       " v-html="chapInfoList[courseType].chapterInfo[0].taskJson[
+    taskCount
+  ].taskDetail
+    ? chapInfoList[courseType].chapterInfo[0].taskJson[
       taskCount
     ].taskDetail
-      ? chapInfoList[courseType].chapterInfo[0].taskJson[
-        taskCount
-      ].taskDetail
-      : '暂无描述'
+    : '暂无描述'
     "></div>
                 </div>
               </div>
@@ -232,7 +232,7 @@
                     <pdf :pdfUrl="pptImgUrl1" style="width: 100%; height: 100%; overflow: auto"></pdf>
                   </div>
                   <div class="wheel" v-if="showType == 4" style="width: 95%; margin: 0 auto">
-                    <el-image :src="pptImgUrl1" fit="cover" style="width: 100%"></el-image>
+                    <el-image :src="pptImgUrl1" fit="contain" style="width: 100%;height:100%;cursor: pointer;" @click="previewImg(pptImgUrl1)"></el-image>
                   </div>
                 </div>
                 <div class="pButton" style="
@@ -247,9 +247,9 @@
                   <img src="../assets/navBtn2.png" style="width: 25px" alt="" />
                 </div>
                 <div v-if="contentDialog == true" :style="{
-                  width: (vChapterData[taskCount].length > 0 && showType === '') ? 'calc(100%)' : 'calc(100% - 83%)', margin: (vChapterData[taskCount].length > 0 && showType === '') ? '0 15px' : '0 15px 0 0'
+                  width: ((vChapterData[taskCount].length > 0 || fileC[taskCount].length > 0) && showType === '') ? 'calc(100%)' : 'calc(100% - 83%)', margin: ((vChapterData[taskCount].length > 0 || fileC[taskCount].length > 0) && showType === '') ? '0 15px' : '0 15px 0 0'
                 }">
-                  <div class="vedioList" v-if="vChapterData[taskCount].length > 0" style="height: 650px">
+                  <div class="vedioList" v-if="vChapterData[taskCount].length > 0 || fileC[taskCount].length > 0" style="height: 650px">
                     <div class="navCorOpenBox">
                       <div class="navTitile">内容列表:</div>
                       <div class="navCorOpen" @click="setContent(false)">
@@ -257,7 +257,7 @@
                       </div>
                     </div>
                     <div class="navBox">
-                      <div v-show="vChapterData[taskCount].length > 0
+                      <div v-show="vChapterData[taskCount].length > 0  || fileC[taskCount].length > 0
                         ">
                         <div class="vedioTimeBox" v-for="(vitem, vindex) in vChapterData[taskCount]" :key="vindex + '1'">
                           <div @click="lookVedio(vitem.url, vindex)" v-if="vitem.type == 2" class="vedioName" :class="isClickNav == vindex
@@ -298,6 +298,24 @@
                               <span v-if="vitem.text">{{ vitem.text }}-</span>{{ vitem.name }}
                             </div>
                           </div>
+                          <div style="width: calc(100% - 0px)" @click="checkPhoto(vitem, vindex)" v-if="vitem.type == 13">
+                            <div class="navText" :class="isClickNav == vindex
+                              ? 'isClickNav'
+                              : ''
+                              ">
+                              {{ vitem.name }}
+                            </div>
+                          </div>
+                        </div>
+                        <div class="fileC_box" v-if="fileC[taskCount].length > 0">
+                          <div class="fileC_title">以下文件不支持预览</div>
+                          <div class="vedioTimeBox" v-for="(vitem, vindex) in fileC[taskCount]" :key="vindex + '1'">
+                            <div style="width: calc(100% - 0px)" @click="downloadFile2(vitem)" v-if="vitem.type == 12">
+                              <div class="navText">
+                                <span v-if="vitem.text">{{ vitem.text }}-</span>{{ vitem.name }}
+                              </div>
+                            </div>
+                          </div>
                         </div>
                       </div>
                     </div>
@@ -349,7 +367,7 @@
               <div class="upFile" v-if="type == 3">提交</div>
             </div>-->
             <div class="vedioBox" v-if="chapInfoList[courseType].chapterInfo[0].taskJson[taskCount]
-                .toolChoose[0].tool &&
+              .toolChoose[0].tool &&
               chapInfoList[courseType].chapterInfo[0].taskJson[taskCount]
                 .toolChoose[0].tool.length &&
               chapInfoList[courseType].chapterInfo[0].taskJson[taskCount]
@@ -629,12 +647,12 @@
                         transform: translateY(-130%);
                       " @click="addImg($event)">上传作业<input type="file" accept="*" style="display: none"
                         @change="beforeUpload1($event, 7, toolIndex)" /></el-button>
-                    <el-button type="primary" v-if="tool.tool[0] == 57" style="
+                    <!-- <el-button type="primary" v-if="tool.tool[0] == 57" style="
                         position: absolute;
                         right: 30px;
                         transform: translateY(-130%);
                       " @click="addImg($event)">上传作业<input type="file" accept="*" style="display: none"
-                        @change="beforeUpload1($event, 8, toolIndex)" /></el-button>
+                        @change="beforeUpload1($event, 8, toolIndex)" /></el-button> -->
                   </div>
                   <div v-if="tType &&
                     tType == 2 &&
@@ -785,7 +803,9 @@
                           box-shadow: 0 0 6px 1px #dfdada;
                         " v-for="(w, wIndex) in workStudent[toolIndex]" :key="wIndex">
                         <div class="workImg">
-                          <img :src="word2" @click="downloadFile(w.works)" alt />
+                          <img :src="word2" @click="downloadFile(w.works)" v-if="w.type == 12" alt />
+                          <img :src="word2" @click="openCocoPi(57, toolIndex, w.userid, w.sName)" v-else-if="w.type == 15"
+                            alt />
                           <div class="answerScore" v-if="w.score" @click.stop="openScore(w)" :class="{
                             rightW:
                               w.userid == userid || tType == 1 || tType == 4,
@@ -1568,7 +1588,9 @@
                           ? worksStudent[toolIndex]
                           : worksStudent[toolIndex].slice(0, 6)" :key="wIndex" :class="w.type == 1 ? 'isTypeOne' : ''">
                         <div class="workImg">
-                          <img :src="word2" @click="downloadFile(w.works)" alt />
+                          <img :src="word2" @click="downloadFile(w.works)" v-if="w.type == 12" alt />
+                          <img :src="word2" @click="openCocoPi(57, toolIndex, w.userid, w.sName)" v-else-if="w.type == 15"
+                            alt />
                           <div class="answerScore" v-if="w.score" @click.stop="openScore(w)" :class="{
                             rightW:
                               w.userid == userid ||
@@ -3611,7 +3633,7 @@
               </div>
             </div>
             <div class="vedioBox" v-if="chapInfoList[courseType].chapterInfo[0].taskJson[taskCount]
-                .eList &&
+              .eList &&
               chapInfoList[courseType].chapterInfo[0].taskJson[taskCount]
                 .eList.length &&
               chapInfoList[courseType].chapterInfo[0].taskJson[taskCount]
@@ -4353,6 +4375,11 @@
           <img src="../assets/icon/codeFile.png" />
           <div>点击下载文件</div>
         </div>
+        <div class="worksAnswer codeFileBox" v-if="commentDetail.works && commentDetail.type == 15"
+          @click="openCocoPi(57, commentIndexJson.toolIndex, commentDetail.userid, commentDetail.sName)">
+          <img src="../assets/icon/codeFile.png" />
+          <div>点击打开CocoPi</div>
+        </div>
         <div class="worksAnswer" v-if="commentDetail.works && commentDetail.type == 13">
           <div v-html="JSON.parse(commentDetail.works).text"></div>
         </div>
@@ -4464,7 +4491,7 @@
 
         <div>
           <textarea rows="3" class="pj" style="padding: 10px 5px" cols v-model="commentText"
-            placeholder="请输入对该学生的评价"></textarea>
+            placeholder="请输入评论"></textarea>
         </div>
       </div>
 
@@ -4734,6 +4761,11 @@
           <img src="../assets/icon/codeFile.png" />
           <div>点击下载文件</div>
         </div>
+        <div class="worksAnswer codeFileBox" v-if="commentDetail.works && commentDetail.type == 15"
+          @click="openCocoPi(57, commentIndexJson.toolIndex, commentDetail.userid, commentDetail.sName)">
+          <img src="../assets/icon/codeFile.png" />
+          <div>点击打开CocoPi</div>
+        </div>
         <div class="worksAnswer" v-if="commentDetail.works && commentDetail.type == 13">
           <div v-html="JSON.parse(commentDetail.works).text"></div>
         </div>
@@ -6460,7 +6492,7 @@ export default {
     },
     addCourseWorksTeacher(i) {
       var typesql;
-      if (this.sTool == 32 || this.sTool == 57) {
+      if (this.sTool == 32) {
         this.addCourseWorksGongTeacher(
           this.toolindex,
           this.studyJuri[0].cover[0].url,
@@ -6977,6 +7009,18 @@ export default {
                     userid: b[j].userid,
                     wid: b[j].id,
                   });
+                } else if (b[j].type == 15 && a[i].tool[0] == 57) {
+                  //选择题
+                  this.workStudent[i].push({
+                    works: b[j].content,
+                    sName: b[j].name,
+                    score: b[j].score,
+                    img: b[j].img,
+                    type: 15,
+                    time: b[j].time,
+                    userid: b[j].userid,
+                    wid: b[j].id,
+                  });
                 }
               }
             }
@@ -7151,7 +7195,7 @@ export default {
     },
     addComment(wid, uid, t) {
       if (this.commentText == "") {
-        this.$message.error("请输入对该学生的评价");
+        this.$message.error("请输入评论");
         return;
       }
       let params2 = [
@@ -8067,7 +8111,7 @@ export default {
                     commentJson: commentJson,
                   });
                   this.isWorksS[i].push({ uid: b[j].userid, sName: b[j].name });
-                } else if (a[i].tool[0] == 57 && b[j].atool == 57) {
+                } else if (a[i].tool[0] == 57 && b[j].atool == 57 && b[j].type == 12) {
                   _worksStudent[i].push({
                     userid: b[j].userid,
                     ateacher: b[j].ateacher,
@@ -8084,6 +8128,23 @@ export default {
                     commentJson: commentJson,
                   });
                   this.isWorksS[i].push({ uid: b[j].userid, sName: b[j].name });
+                } else if (a[i].tool[0] == 57 && b[j].atool == 57 && b[j].type == 15) {
+                  _worksStudent[i].push({
+                    userid: b[j].userid,
+                    ateacher: b[j].ateacher,
+                    wid: b[j].id,
+                    works: b[j].content,
+                    sName: b[j].name ? b[j].name : b[j].userid,
+                    type: 15,
+                    time: b[j].time,
+                    score: b[j].score,
+                    img: b[j].img,
+                    likesCount: likesCount,
+                    commentCount: commentCount,
+                    isLikes: isLikes,
+                    commentJson: commentJson,
+                  });
+                  this.isWorksS[i].push({ uid: b[j].userid, sName: b[j].name });
                 }
               }
             }
@@ -9148,7 +9209,15 @@ export default {
               this.chapToolList[i] = [];
               this.file[i] = [];
               this.fileC[i] = [];
-              _chapterData[i] = c
+              _chapterData[i] = c.filter(el => {
+                return el.type != 12
+              })
+              this.fileC[i] = c.filter(el => {
+                return el.type == 12
+              })
+              // else if (c[j].type == 12) {
+              //     this.fileC[i].push(c[j]);
+              //   }
               for (var j = 0; j < c.length; j++) {
                 if (c[j].type == 7) {
                   this.chapToolList[i].push(c[j]);
@@ -9156,8 +9225,6 @@ export default {
                   this.lineList[i].push(c[j]);
                 } else if (c[j].type == 6) {
                   this.textList[i].push(c[j]);
-                } else if (c[j].type == 12) {
-                  this.fileC[i].push(c[j]);
                 } else {
                   if (
                     b.indexOf(
@@ -9255,13 +9322,18 @@ export default {
                   ) {
                     this.showType = 4;
                     this.pptImgUrl1 = _url;
-                  } else {
+                  }else {
                     this.showType = 2;
                     this.pptImgUrl1 =
                       "https://view.officeapps.live.com/op/view.aspx?src=" +
                       _url;
                   }
                 } else if (
+                    _chapterData[this.taskCount][0].type == 13
+                  ) {
+                    this.showType = 4;
+                    this.pptImgUrl1 = _url;
+                  }  else if (
                   _chapterData[this.taskCount][0].type == 6
                 ) {
                   this.showType = 1;
@@ -9323,7 +9395,12 @@ export default {
               this.chapToolList[i] = [];
               this.file[i] = [];
               this.fileC[i] = [];
-              _chapterData[i] = c
+              _chapterData[i] = c.filter(el => {
+                return el.type != 12
+              })
+              this.fileC[i] = c.filter(el => {
+                return el.type == 12
+              })
               for (var j = 0; j < c.length; j++) {
                 if (c[j].type == 7) {
                   this.chapToolList[i].push(c[j]);
@@ -9331,9 +9408,7 @@ export default {
                   this.lineList[i].push(c[j]);
                 } else if (c[j].type == 6) {
                   this.textList[i].push(c[j]);
-                } else if (c[j].type == 12) {
-                  this.fileC[i].push(c[j]);
-                } else {
+                }else {
                   if (
                     b.indexOf(
                       c[j].url
@@ -9393,13 +9468,18 @@ export default {
                   ) {
                     this.showType = 4;
                     this.pptImgUrl1 = _url;
-                  } else {
+                  }else {
                     this.showType = 2;
                     this.pptImgUrl1 =
                       "https://view.officeapps.live.com/op/view.aspx?src=" +
                       _url;
                   }
                 } else if (
+                    _chapterData[this.taskCount][0].type == 13
+                  ) {
+                    this.showType = 4;
+                    this.pptImgUrl1 = _url;
+                  }  else if (
                   _chapterData[this.taskCount][0].type == 6
                 ) {
                   this.showType = 1;
@@ -9512,6 +9592,11 @@ export default {
                 el.works = [];
                 return el;
               });
+              if(courseGroup.isopen == 2){
+                this.isGroup = false;
+                this.selectSWorks(gindex);
+                return;
+              }
               this.courseGroup = courseGroup;
               let groupPerson = res.data[1];
               let group = JSON.parse(res.data[0][0].group).group;
@@ -9532,7 +9617,11 @@ export default {
               this.courseGroupStudent = courseGroupStudent;
               this.courseGroupStudentUid = courseGroupStudentUid;
             }
-            this.isGroup = true;
+            if(this.courseGroup.isopen == 2){
+              this.isGroup = false;
+            }else{
+              this.isGroup = true;
+            }
             this.selectSWorks(gindex);
           } else {
             this.selectSWorks(gindex);
@@ -10031,6 +10120,12 @@ export default {
       this.isClickNav = i;
       this.$forceUpdate();
     },
+    checkPhoto(f, i){
+      this.showType = 4;
+      this.pptImgUrl1 = f.url;
+      this.isClickNav = i;
+      this.$forceUpdate();
+    },
     downFile(f, i) {
       this.isClickNav = "";
       this.pptImgUrl1 = "";
@@ -10717,7 +10812,17 @@ export default {
       } else if (t == 32) {
         window.parent.postMessage({ tools: "32" }, "*");
       } else if (t == 57) {
-        window.parent.postMessage({ tools: "57" }, "*");
+        // window.parent.postMessage({ tools: "57" }, "*");
+        window.parent.postMessage(
+          {
+            tools: "57u",
+            cid: this.id,
+            stage: this.courseType,
+            task: this.taskCount,
+            tool: i,
+          },
+          "*"
+        );
       } else if (t == 58) {
         window.parent.postMessage({ tools: "58" }, "*");
       } else if (t == 59) {
@@ -10892,7 +10997,7 @@ export default {
       if (this.tType !== "1" && this.tType !== "4") {
         return;
       }
-      if (t == 16 || t == 32 || t == 57 || t == 50) {
+      if (t == 16 || t == 32 || t == 50) {
         this.dialogVisibleWorks = true;
       } else if (t == 15) {
         this.answerQ = this.chapInfoList[this.courseType].chapterInfo[0]
@@ -11083,7 +11188,7 @@ export default {
 
         this.isStar = false;
         this.studentEvalDialogVisibleTeacher = true;
-      } else if (t == 3 || t == 1 || t == 7) {
+      } else if (t == 3 || t == 1 || t == 7 || t == 57) {
         window.parent.postMessage(
           {
             tools: t + "teacher",
@@ -11097,6 +11202,25 @@ export default {
         );
       }
     },
+    openCocoPi(tool, i, uid, uname) {
+      let student = {
+        userid: uid,
+        student: uname,
+      }
+      if (tool == 57) {
+        window.parent.postMessage(
+          {
+            tools: tool + "teacher",
+            cid: this.id,
+            stage: this.courseType,
+            task: this.taskCount,
+            tool: i,
+            student: student,
+          },
+          "*"
+        );
+      }
+    },
     setRightAnswer(s, i, j) {
       for (var q = 0; q < this.sentenceList[i].chooseSenList.length; q++) {
         if (
@@ -11636,7 +11760,7 @@ export default {
       let params = [
         {
           cid: this.id,
-          chapters: JSON.stringify(this.chapInfoList).replaceAll(/%/g, "%25"),
+          chapters: JSON.stringify(this.chapInfoList),
           uid: this.userid,
           unitIndex: this.courseType,
         },
@@ -14514,8 +14638,12 @@ export default {
 .cont>>>table th {
   border-bottom: 1px solid #ccc;
   border-right: 1px solid #ccc;
-  padding: 15px 5px;
+  /* padding: 20px 5px; */
+  padding: 5px 10px;
   max-width: 0px;
+  height: 30px;
+  vertical-align: baseline;
+  box-sizing: border-box;
 }
 
 .cont>>>table th {
@@ -14534,6 +14662,27 @@ export default {
   background-color: #f1f1f1;
 }
 
+/* code 样式 */
+.cont>>>code {
+  display: inline-block;
+  *display: inline;
+  *zoom: 1;
+  background-color: #f1f1f1;
+  border-radius: 3px;
+  padding: 3px 5px;
+  margin: 0 3px;
+}
+
+.cont>>>pre code {
+  display: block;
+}
+
+/* ul ol 样式 */
+.cont>>>ul,
+ol {
+  margin: 10px 0 10px 20px;
+}
+
 .addPzCheck {
   display: flex;
   flex-direction: row;
@@ -14563,26 +14712,6 @@ export default {
   -webkit-line-break: after-white-space;
 }
 
-.cont>>>code {
-  display: inline-block;
-  *display: inline;
-  *zoom: 1;
-  background-color: #f1f1f1;
-  border-radius: 3px;
-  padding: 3px 5px;
-  margin: 0 3px;
-}
-
-.cont>>>pre code {
-  display: block;
-}
-
-/* ul ol 样式 */
-.cont>>>ul,
-ol {
-  margin: 10px 0 10px 20px;
-}
-
 .scoreBox,
 .scoreDetailBox {
   display: flex;
@@ -15268,4 +15397,12 @@ ol {
 .group_switch>span {
   margin-right: 5px;
 }
+
+
+.fileC_box > .fileC_title{
+  padding: 10px 5px;
+  border-top: 1px solid #cdcdcd;
+  font-size: 14px;
+  color: #868686;
+}
 </style>

部分文件因文件數量過多而無法顯示