lsc 2 år sedan
förälder
incheckning
c5715ab449

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.9ed427c0de5ab1e51b449679f365fcfb.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.748f10c1abb0af104b93.js></script><script type=text/javascript src=./static/js/app.4b3532714575de625a9d.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.c7200eb54769d682801ee25d29245cdc.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.748f10c1abb0af104b93.js></script><script type=text/javascript src=./static/js/app.2855025b77a14d0d3e72.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

Filskillnaden har hållts tillbaka eftersom den är för stor
+ 0 - 0
dist/static/css/app.9ed427c0de5ab1e51b449679f365fcfb.css


Filskillnaden har hållts tillbaka eftersom den är för stor
+ 0 - 0
dist/static/css/app.9ed427c0de5ab1e51b449679f365fcfb.css.map


Filskillnaden har hållts tillbaka eftersom den är för stor
+ 0 - 0
dist/static/css/app.c7200eb54769d682801ee25d29245cdc.css


Filskillnaden har hållts tillbaka eftersom den är för stor
+ 0 - 0
dist/static/css/app.c7200eb54769d682801ee25d29245cdc.css.map


Filskillnaden har hållts tillbaka eftersom den är för stor
+ 0 - 0
dist/static/js/app.2855025b77a14d0d3e72.js


Filskillnaden har hållts tillbaka eftersom den är för stor
+ 0 - 0
dist/static/js/app.2855025b77a14d0d3e72.js.map


Filskillnaden har hållts tillbaka eftersom den är för stor
+ 0 - 0
dist/static/js/app.4b3532714575de625a9d.js


Filskillnaden har hållts tillbaka eftersom den är för stor
+ 0 - 0
dist/static/js/manifest.3512a67a6213c2df4180.js.map


+ 3 - 3
src/components/pages/addCourse.vue

@@ -196,7 +196,7 @@
                             v-for="(item, index) in CourseType[0]"
                             :key="index"
                           >
-                            <span>{{ item.name }}</span>
+                            <span v-if="CourseTypeJson[item.id].length">{{ item.name }}</span>
                             <el-checkbox-group
                               v-model="courseTypeId"
                               v-if="CourseTypeJson[item.id].length > 0"
@@ -208,12 +208,12 @@
                                 >{{ item1.name }}</el-checkbox
                               >
                             </el-checkbox-group>
-                            <div
+                            <!-- <div
                               v-else
                               style="font-size: 14px; margin-left: -8px"
                             >
                               暂无
-                            </div>
+                            </div> -->
                           </div>
                         </div>
                       </div>

+ 3 - 2
src/components/pages/course.vue

@@ -33,8 +33,9 @@
             v-for="(item, index) in CourseType[0]"
             :key="index"
           >
-            <span>{{ item.name }}</span>
+            <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"
@@ -1060,7 +1061,7 @@ export default {
   display: flex;
   flex-direction: row;
   align-items: center;
-  width: calc(100% / 3);
+  max-width: calc(100% / 3);
 }
 
 .all_choose > span {

+ 3 - 3
src/components/pages/scourse.vue

@@ -23,8 +23,8 @@
             </el-select>
           </div> -->
           <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index">
-            <span>{{ item.name }}</span>
-            <el-select v-model="courseTypeId[item.id]" placeholder="请选择" @change="getTypeName">
+            <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>
@@ -1016,7 +1016,7 @@ export default {
   display: flex;
   flex-direction: row;
   align-items: center;
-  width: calc(100% / 3 - 50px);
+  max-width: calc(100% / 3 - 50px);
 }
 
 .all_choose>span {

+ 297 - 289
src/components/pages/student/addCourse.vue

@@ -151,7 +151,8 @@
                                                 <div class="choose">
                                                     <div class="all_choose" v-for="(item, index) in CourseType[0]"
                                                         :key="index">
-                                                        <span>{{ item.name }}</span>
+                                                        <span v-if="CourseTypeJson[item.id].length > 0">{{ item.name
+                                                        }}</span>
                                                         <el-checkbox-group v-model="courseTypeId"
                                                             v-if="CourseTypeJson[item.id].length > 0">
                                                             <el-checkbox @change="updateType(item1)"
@@ -159,9 +160,9 @@
                                                                 :label="item1.id">{{ item1.name }}
                                                             </el-checkbox>
                                                         </el-checkbox-group>
-                                                        <div v-else style="font-size: 14px; ">
+                                                        <!-- <div v-else style="font-size: 14px; ">
                                                             暂无分类
-                                                        </div>
+                                                        </div> -->
                                                     </div>
                                                 </div>
                                             </div>
@@ -182,12 +183,12 @@
                             <div class="right_first">
                                 <div class="right_title">上传封面与成员</div>
                                 <div style="
-                                                        padding: 0 0 50px 20px;
-                                                        display: flex;
-                                                        align-items: baseline;
-                                                        justify-content: flex-start;
-                                                        margin: 0 auto;
-                                                      ">
+                                                            padding: 0 0 50px 20px;
+                                                            display: flex;
+                                                            align-items: baseline;
+                                                            justify-content: flex-start;
+                                                            margin: 0 auto;
+                                                          ">
                                     <div>
                                         <div class="bInfo_title" style="margin-top: 0 !important">
                                             项目封面
@@ -204,13 +205,13 @@
                                         </el-upload>
                                     </div>
                                     <div style="
-                                                          display: flex;
-                                                          flex-flow: row nowrap;
-                                                          flex-direction: row;
-                                                          flex-wrap: wrap;
-                                                          align-items: baseline;
-                                                          margin: 0 30px;
-                                                        ">
+                                                              display: flex;
+                                                              flex-flow: row nowrap;
+                                                              flex-direction: row;
+                                                              flex-wrap: wrap;
+                                                              align-items: baseline;
+                                                              margin: 0 30px;
+                                                            ">
                                         <!-- <div style="margin: 0 80px">
                                       <div class="bInfo_title">
                                         选择项目成员
@@ -269,23 +270,23 @@
                             <div class="right_title">目标管理</div>
                             <div style="margin: 15px auto; padding: 0 0 0 20px">
                                 <div style="
-                                                        width: 100%%;
-                                                        display: flex;
-                                                        flex-direction: row;
-                                                        flex-wrap: nowrap;
-                                                        align-content: center;
-                                                        align-items: center;
-                                                        justify-content: space-between;
-                                                      ">
+                                                            width: 100%%;
+                                                            display: flex;
+                                                            flex-direction: row;
+                                                            flex-wrap: nowrap;
+                                                            align-content: center;
+                                                            align-items: center;
+                                                            justify-content: space-between;
+                                                          ">
                                     <div style="
-                                                          display: flex;
-                                                          flex-flow: row nowrap;
-                                                          align-items: flex-start;
-                                                          width: 100%;
-                                                          flex-direction: column;
-                                                          flex-wrap: nowrap;
-                                                          position: relative;
-                                                        ">
+                                                              display: flex;
+                                                              flex-flow: row nowrap;
+                                                              align-items: flex-start;
+                                                              width: 100%;
+                                                              flex-direction: column;
+                                                              flex-wrap: nowrap;
+                                                              position: relative;
+                                                            ">
                                         <!-- <div style="margin-right: 15px; min-width: 120px">
                                       请选择评价指标
                                     </div>
@@ -341,21 +342,21 @@
                                     </div>
                                 </div>
                                 <div v-if="evalua" style="
-                                                        border: 1px solid #e5e5e5;
-                                                        width: 95%;
-                                                        margin-top: 30px;
-                                                        box-shadow: 3px 1px 15px 3px #e0e0e0;
-                                                      ">
+                                                            border: 1px solid #e5e5e5;
+                                                            width: 95%;
+                                                            margin-top: 30px;
+                                                            box-shadow: 3px 1px 15px 3px #e0e0e0;
+                                                          ">
                                     <div class="e_add_top">
                                         <div class="e_add_title">
                                             <span>当前使用目标管理</span>
                                             <span>{{ eTitle }}</span>
                                             <img src="../../../assets/line.png" class="cru_line" style="
-                                                              width: 125px;
-                                                              height: 20px;
-                                                              bottom: -10px;
-                                                              left: 155px;
-                                                            " />
+                                                                  width: 125px;
+                                                                  height: 20px;
+                                                                  bottom: -10px;
+                                                                  left: 155px;
+                                                                " />
                                             <!-- <el-input
                                         v-model="eTitle"
                                         placeholder="请输入名称"
@@ -411,13 +412,13 @@
                                         <img src="../../../assets/icon/wordMub.png" alt />
                                     </div>
                                     <div style="
-                                                          margin-top: 10px;
-                                                          line-height: 19px;
-                                                          overflow: hidden;
-                                                          text-overflow: ellipsis;
-                                                          white-space: nowrap;
-                                                          padding: 0 20px;
-                                                        ">
+                                                              margin-top: 10px;
+                                                              line-height: 19px;
+                                                              overflow: hidden;
+                                                              text-overflow: ellipsis;
+                                                              white-space: nowrap;
+                                                              padding: 0 20px;
+                                                            ">
                                         {{ aa.title }}
                                     </div>
                                 </div>
@@ -426,13 +427,13 @@
                                         <img src="../../../assets/icon/wordMub.png" alt />
                                     </div>
                                     <div style="
-                                                          margin-top: 10px;
-                                                          line-height: 19px;
-                                                          overflow: hidden;
-                                                          text-overflow: ellipsis;
-                                                          white-space: nowrap;
-                                                          padding: 0 20px;
-                                                        ">
+                                                              margin-top: 10px;
+                                                              line-height: 19px;
+                                                              overflow: hidden;
+                                                              text-overflow: ellipsis;
+                                                              white-space: nowrap;
+                                                              padding: 0 20px;
+                                                            ">
                                         新建项目
                                     </div>
                                 </div>
@@ -457,17 +458,17 @@
                     <div class="rightBox" v-if="this.steps == 3" ref="rightboxR">
                         <div class="basic_box">
                             <div style="
-                                                      display: flex;
-                                                      flex-direction: row;
-                                                      align-items: center;
-                                                      position: sticky;
-                                                      top: 0;
-                                                      background: #fff;
-                                                      z-index: 99;
-                                                      width: 100%;
-                                                      padding: 0 20px 0 20px;
-                                                      box-sizing: border-box;
-                                                    ">
+                                                          display: flex;
+                                                          flex-direction: row;
+                                                          align-items: center;
+                                                          position: sticky;
+                                                          top: 0;
+                                                          background: #fff;
+                                                          z-index: 99;
+                                                          width: 100%;
+                                                          padding: 0 20px 0 20px;
+                                                          box-sizing: border-box;
+                                                        ">
                                 <div class="cru_selectBox">
                                     <div v-for="(item, index) in unitJson" :key="index" class="cru_select"
                                         :class="unitIndex == index ? 'cru_selected' : ''" @click="unitSet(index)">
@@ -504,32 +505,32 @@
                                                 任务{{ itemTaskIndex + 1 }}
                                             </div>
                                             <div class="chapter_contentbox" style="
-                                                              flex-direction: row;
-                                                              justify-content: flex-start;
-                                                              align-items: center;
-                                                              flex-wrap: wrap;
-                                                            ">
+                                                                  flex-direction: row;
+                                                                  justify-content: flex-start;
+                                                                  align-items: center;
+                                                                  flex-wrap: wrap;
+                                                                ">
                                                 <div style="
-                                                              flex-direction: row;
-                                                              justify-content: flex-start;
-                                                              align-items: center;
-                                                              flex-wrap: wrap;
-                                                              display: flex;
-                                                              width: calc(100% - 115px);
-                                                              ">
+                                                                  flex-direction: row;
+                                                                  justify-content: flex-start;
+                                                                  align-items: center;
+                                                                  flex-wrap: wrap;
+                                                                  display: flex;
+                                                                  width: calc(100% - 115px);
+                                                                  ">
                                                     <div style="
-                                                              flex-direction: row;
-                                                              justify-content: flex-start;
-                                                              align-items: center;
-                                                              display: flex;
-                                                              margin-bottom: 10px;
-                                                            ">
+                                                                  flex-direction: row;
+                                                                  justify-content: flex-start;
+                                                                  align-items: center;
+                                                                  display: flex;
+                                                                  margin-bottom: 10px;
+                                                                ">
                                                         <div style="
-                                                                border-left: 6px solid #5699e8;
-                                                                height: 20px;
-                                                                padding: 0 10px;
-                                                                line-height: 22px;
-                                                              ">
+                                                                    border-left: 6px solid #5699e8;
+                                                                    height: 20px;
+                                                                    padding: 0 10px;
+                                                                    line-height: 22px;
+                                                                  ">
                                                             任务名称
                                                         </div>
                                                         <div style="width:auto">
@@ -542,17 +543,17 @@
                                                         </div>
                                                     </div>
                                                     <div style="
-                                                              flex-direction: row;
-                                                              justify-content: flex-start;
-                                                              align-items: center;
-                                                              display: flex;
-                                                              margin-bottom: 10px;
-                                                            ">
+                                                                  flex-direction: row;
+                                                                  justify-content: flex-start;
+                                                                  align-items: center;
+                                                                  display: flex;
+                                                                  margin-bottom: 10px;
+                                                                ">
                                                         <div style="
-                                                                height: 20px;
-                                                                padding: 0 10px 0 16px;
-                                                                line-height: 22px;
-                                                              ">
+                                                                    height: 20px;
+                                                                    padding: 0 10px 0 16px;
+                                                                    line-height: 22px;
+                                                                  ">
                                                             负责人
                                                         </div>
                                                         <div style="width:auto">
@@ -590,18 +591,18 @@
                                                     style="position: absolute; right: 55px"></div>
                                             </div>
                                             <div style="
-                                                              flex-direction: row;
-                                                              justify-content: flex-start;
-                                                              align-items: center;
-                                                              display: flex;
-                                                              margin: 10px 0 15px;
-                                                            ">
+                                                                  flex-direction: row;
+                                                                  justify-content: flex-start;
+                                                                  align-items: center;
+                                                                  display: flex;
+                                                                  margin: 10px 0 15px;
+                                                                ">
                                                 <div style="
-                                                                height: 20px;
-                                                                padding-left: 16px;
-                                                                line-height: 22px;
-                                                                font-size: 18px;
-                                                              ">
+                                                                    height: 20px;
+                                                                    padding-left: 16px;
+                                                                    line-height: 22px;
+                                                                    font-size: 18px;
+                                                                  ">
                                                     协同人员
                                                 </div>
                                                 <el-tooltip
@@ -619,17 +620,17 @@
                                                 </div>
                                             </div>
                                             <div style="
-                                                              flex-direction: row;
-                                                              justify-content: flex-start;
-                                                              align-items: center;
-                                                              display: flex;
-                                                              margin-top: 10px;
-                                                            ">
+                                                                  flex-direction: row;
+                                                                  justify-content: flex-start;
+                                                                  align-items: center;
+                                                                  display: flex;
+                                                                  margin-top: 10px;
+                                                                ">
                                                 <div style="
-                                                                height: 20px;
-                                                                padding-left: 16px;
-                                                                line-height: 22px;
-                                                              ">
+                                                                    height: 20px;
+                                                                    padding-left: 16px;
+                                                                    line-height: 22px;
+                                                                  ">
                                                     任务起止时间
                                                 </div>
                                                 <div style="margin-left:20px">
@@ -641,13 +642,13 @@
                                                 </div>
                                             </div>
                                             <div style="
-                                                              display: flex;
-                                                              margin: 0 0 20px 0;
-                                                              flex-direction: row;
-                                                              justify-content: flex-start;
-                                                              align-items: center;
-                                                              width: 70.5% !important;
-                                                            ">
+                                                                  display: flex;
+                                                                  margin: 0 0 20px 0;
+                                                                  flex-direction: row;
+                                                                  justify-content: flex-start;
+                                                                  align-items: center;
+                                                                  width: 70.5% !important;
+                                                                ">
                                                 <div class="lineTitle">任务描述</div>
                                                 <div class="line"></div>
                                             </div>
@@ -662,18 +663,18 @@
                                         </div>
                                     </div>
                                     <div class="basic_box" v-if="false" style="
-                                                          margin: 0;
-                                                          min-height: 0;
-                                                          width: 90% !important;
-                                                          paddint-top: 10px !important;
-                                                        ">
+                                                              margin: 0;
+                                                              min-height: 0;
+                                                              width: 90% !important;
+                                                              paddint-top: 10px !important;
+                                                            ">
                                         <div style="
-                                                            display: flex;
-                                                            margin: 0 0 20px 0;
-                                                            flex-direction: row;
-                                                            justify-content: flex-start;
-                                                            align-items: center;
-                                                          ">
+                                                                display: flex;
+                                                                margin: 0 0 20px 0;
+                                                                flex-direction: row;
+                                                                justify-content: flex-start;
+                                                                align-items: center;
+                                                              ">
                                             <div class="lineTitle">资源库</div>
                                             <div class="line"></div>
                                         </div>
@@ -696,10 +697,10 @@
                                                     ">
                                                     <div class="chapter_upload_t" style="width: 100%"></div>
                                                     <div class="chapter_upload_o" style="
-                                                                  position: relative;
-                                                                  display: flex;
-                                                                  align-items: center;
-                                                                ">
+                                                                      position: relative;
+                                                                      display: flex;
+                                                                      align-items: center;
+                                                                    ">
                                                         <div class="chapter_upload_l" style="padding: 1px 0 0 10px">
                                                             <div v-if="item1.type == 2" class="chapter_upload_l_i1">
                                                             </div>
@@ -714,12 +715,12 @@
                                                                 style="margin-left: 1px"></div>
                                                         </div>
                                                         <div class="chapter_upload_ic" style="
-                                                                    cursor: pointer;
-                                                                    position: absolute;
-                                                                    width: 45px;
-                                                                    right: 0;
-                                                                    top: 0;
-                                                                  ">
+                                                                        cursor: pointer;
+                                                                        position: absolute;
+                                                                        width: 45px;
+                                                                        right: 0;
+                                                                        top: 0;
+                                                                      ">
                                                             <div class="chapter_upload_ic_l"></div>
                                                             <div class="chapter_upload_ic_r" style="position: absolute"
                                                                 @click.stop="
@@ -748,35 +749,35 @@
         index1
     )
 " style="
-                                                                      border: none;
-                                                                      outline: none;
-                                                                      width: 80%;
-                                                                      minwidth: 215px;
-                                                                      z-index: 99;
-                                                                      font-size: 14px;
-                                                                      white-space: nowrap;
-                                                                      overflow: hidden;
-                                                                      text-overflow: ellipsis;
-                                                                    " />
+                                                                          border: none;
+                                                                          outline: none;
+                                                                          width: 80%;
+                                                                          minwidth: 215px;
+                                                                          z-index: 99;
+                                                                          font-size: 14px;
+                                                                          white-space: nowrap;
+                                                                          overflow: hidden;
+                                                                          text-overflow: ellipsis;
+                                                                        " />
                                                             <input :placeholder="item1.name" v-if="item1.type == 6" style="
-                                                                      border: none;
-                                                                      outline: none;
-                                                                      width: 80%;
-                                                                      white-space: nowrap;
-                                                                      overflow: hidden;
-                                                                      text-overflow: ellipsis;
-                                                                    " readonly="true"
+                                                                          border: none;
+                                                                          outline: none;
+                                                                          width: 80%;
+                                                                          white-space: nowrap;
+                                                                          overflow: hidden;
+                                                                          text-overflow: ellipsis;
+                                                                        " readonly="true"
                                                                 @click="selectAttText(itemTaskIndex, index1)" />
                                                             <input :placeholder="
                                                                 item1.title ? item1.title : '链接'
                                                             " v-if="item1.type == 8" style="
-                                                                      border: none;
-                                                                      outline: none;
-                                                                      width: 80%;
-                                                                      white-space: nowrap;
-                                                                      overflow: hidden;
-                                                                      text-overflow: ellipsis;
-                                                                    " readonly="true"
+                                                                          border: none;
+                                                                          outline: none;
+                                                                          width: 80%;
+                                                                          white-space: nowrap;
+                                                                          overflow: hidden;
+                                                                          text-overflow: ellipsis;
+                                                                        " readonly="true"
                                                                 @click="selectLine(itemTaskIndex, index1)" />
                                                             <div class="chapter_upload_ud" style="z-index: 99">
                                                                 <div class="chapter_upload_up" @click="
@@ -838,20 +839,20 @@
                                     <div class="toolChoose" style="padding: 0 0 30px 30px">
                                         <div class="tools" style="margin-top:20px">
                                             <div class="leftTools" style="
-                                                              width: 95%;
-                                                              padding: 0 0 15px 0;
-                                                              border-bottom: 1px solid #efefef;
-                                                              margin-bottom: 15px;
-                                                            " v-for="(itemTool, toolIndex) in itemTask.toolArray"
+                                                                  width: 95%;
+                                                                  padding: 0 0 15px 0;
+                                                                  border-bottom: 1px solid #efefef;
+                                                                  margin-bottom: 15px;
+                                                                " v-for="(itemTool, toolIndex) in itemTask.toolArray"
                                                 :key="toolIndex">
                                                 <div style="
-                                                                display: flex;
-                                                                flex-direction: row;
-                                                                align-items: center;
-                                                                flex-wrap: nowrap;
-                                                                justify-content: flex-start;
-                                                                position: relative;
-                                                              ">
+                                                                    display: flex;
+                                                                    flex-direction: row;
+                                                                    align-items: center;
+                                                                    flex-wrap: nowrap;
+                                                                    justify-content: flex-start;
+                                                                    position: relative;
+                                                                  ">
                                                     <div style="margin-right: 20px; font-weight: bold">
                                                         步骤 {{ toolIndex + 1 }} :
                                                     </div>
@@ -1041,19 +1042,19 @@
                                                                 <div class="wheel"
                                                                     v-if="itemTool.toolData[itemTool.sourceIndex].type == 6"
                                                                     style="
-                                                          box-shadow: 0 0 6px 1px #f2f2f2;
-                                                          width: 99%;
-                                                          background: #f1f1f1;
-                                                          height: 650px;
-                                                        ">
+                                                              box-shadow: 0 0 6px 1px #f2f2f2;
+                                                              width: 99%;
+                                                              background: #f1f1f1;
+                                                              height: 650px;
+                                                            ">
                                                                     <div class="texttitle">查看文档</div>
                                                                     <el-form class="textBox">
                                                                         <el-form-item class="textTitle">
                                                                             <div style="
-                                                                font-size: 22px;
-                                                                max-height: 100px;
-                                                                overflow: auto;
-                                                              ">
+                                                                    font-size: 22px;
+                                                                    max-height: 100px;
+                                                                    overflow: auto;
+                                                                  ">
                                                                                 {{
                                                                                     itemTool.toolData[itemTool.sourceIndex].name
                                                                                 }}
@@ -1244,10 +1245,10 @@
                         </div>
                     </div>
                     <div style="
-                                                  width: calc(100% - 20px);
-                                                  background: rgb(255, 255, 255);
-                                                  border-radius: 10px;
-                                                " v-if="steps == 5">
+                                                      width: calc(100% - 20px);
+                                                      background: rgb(255, 255, 255);
+                                                      border-radius: 10px;
+                                                    " v-if="steps == 5">
                         <div class="basic_box_success">
                             <div class="right_img">
                                 <img src="../../../assets/icon/right.png" alt />
@@ -1491,11 +1492,11 @@
             :before-close="handleClose" class="dialog_diy">
             <div>
                 <div class="a_add_title" style="
-                                                display: flex;
-                                                flex-direction: row;
-                                                align-items: center;
-                                                justify-content: center;
-                                              ">
+                                                    display: flex;
+                                                    flex-direction: row;
+                                                    align-items: center;
+                                                    justify-content: center;
+                                                  ">
                     <div style="margin-right: 20px; font-size: 20px">标题:</div>
                     <el-input v-model="askJson.askTitle" placeholder="请输入标题" style="width: 400px"></el-input>
                 </div>
@@ -1613,11 +1614,11 @@
             :before-close="handleClose" class="dialog_diy">
             <div>
                 <div class="a_add_title" style="
-                                                display: flex;
-                                                flex-direction: column;
-                                                align-items: flex-start;
-                                                justify-content: center;
-                                              ">
+                                                    display: flex;
+                                                    flex-direction: column;
+                                                    align-items: flex-start;
+                                                    justify-content: center;
+                                                  ">
                     <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
                     <el-input v-model="answerQ" placeholder="请输入您要问的问题"></el-input>
                 </div>
@@ -1631,11 +1632,11 @@
             :before-close="handleClose" class="dialog_diy">
             <div>
                 <div class="a_add_title" style="
-                                                display: flex;
-                                                flex-direction: column;
-                                                align-items: flex-start;
-                                                justify-content: center;
-                                              ">
+                                                    display: flex;
+                                                    flex-direction: column;
+                                                    align-items: flex-start;
+                                                    justify-content: center;
+                                                  ">
                     <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
                     <el-input v-model="answerQ" placeholder="请输入您想要回答的问题"></el-input>
                 </div>
@@ -1935,11 +1936,11 @@
             <div class="toolChoose" style="padding: 0 0 30px 30px">
                 <div class="tools">
                     <div class="leftTools" style="
-                                                  width: 95%;
-                                                  padding: 0 0 15px 0;
-                                                  border-bottom: 1px solid #efefef;
-                                                  margin-bottom: 15px;
-                                                ">
+                                                      width: 95%;
+                                                      padding: 0 0 15px 0;
+                                                      border-bottom: 1px solid #efefef;
+                                                      margin-bottom: 15px;
+                                                    ">
                         <div style="min-height: 163px">
                             <div class="toolSort">
                                 <div class="tool">
@@ -2023,8 +2024,8 @@
             <div class="toolChoose">
                 <div class="tools">
                     <div class="leftTools" style="
-                                                  width: 100%;
-                                                ">
+                                                      width: 100%;
+                                                    ">
                         <div>
                             <div class="basic_box">
                                 <div>
@@ -2042,10 +2043,10 @@
                                             ">
                                             <div class="chapter_upload_t" style="width: 100%"></div>
                                             <div class="chapter_upload_o" style="
-                                                                  position: relative;
-                                                                  display: flex;
-                                                                  align-items: center;
-                                                                ">
+                                                                      position: relative;
+                                                                      display: flex;
+                                                                      align-items: center;
+                                                                    ">
                                                 <div class="chapter_upload_l" style="padding: 1px 0 0 10px">
                                                     <div v-if="item.type == 2" class="chapter_upload_l_i1"></div>
                                                     <div v-if="
@@ -2059,12 +2060,12 @@
                                                         style="margin-left: 1px"></div>
                                                 </div>
                                                 <div class="chapter_upload_ic" style="
-                                                                    cursor: pointer;
-                                                                    position: absolute;
-                                                                    width: 45px;
-                                                                    right: 0;
-                                                                    top: 0;
-                                                                  ">
+                                                                        cursor: pointer;
+                                                                        position: absolute;
+                                                                        width: 45px;
+                                                                        right: 0;
+                                                                        top: 0;
+                                                                      ">
                                                     <div class="chapter_upload_ic_l"></div>
                                                     <div class="chapter_upload_ic_r" style="position: absolute" @click.stop="
                                                         deleteChapterData2(
@@ -2087,34 +2088,34 @@
         index
     )
 " style="
-                                                                      border: none;
-                                                                      outline: none;
-                                                                      width: 80%;
-                                                                      minwidth: 215px;
-                                                                      z-index: 99;
-                                                                      font-size: 14px;
-                                                                      white-space: nowrap;
-                                                                      overflow: hidden;
-                                                                      text-overflow: ellipsis;
-                                                                    " />
+                                                                          border: none;
+                                                                          outline: none;
+                                                                          width: 80%;
+                                                                          minwidth: 215px;
+                                                                          z-index: 99;
+                                                                          font-size: 14px;
+                                                                          white-space: nowrap;
+                                                                          overflow: hidden;
+                                                                          text-overflow: ellipsis;
+                                                                        " />
                                                     <input :placeholder="item.name" v-if="item.type == 6" style="
-                                                                      border: none;
-                                                                      outline: none;
-                                                                      width: 80%;
-                                                                      white-space: nowrap;
-                                                                      overflow: hidden;
-                                                                      text-overflow: ellipsis;
-                                                                    " readonly="true" @click="selectAttText2(index)" />
+                                                                          border: none;
+                                                                          outline: none;
+                                                                          width: 80%;
+                                                                          white-space: nowrap;
+                                                                          overflow: hidden;
+                                                                          text-overflow: ellipsis;
+                                                                        " readonly="true" @click="selectAttText2(index)" />
                                                     <input :placeholder="
                                                         item.title ? item.title : '链接'
                                                     " v-if="item.type == 8" style="
-                                                                      border: none;
-                                                                      outline: none;
-                                                                      width: 80%;
-                                                                      white-space: nowrap;
-                                                                      overflow: hidden;
-                                                                      text-overflow: ellipsis;
-                                                                    " readonly="true" @click="selectLine2(index)" />
+                                                                          border: none;
+                                                                          outline: none;
+                                                                          width: 80%;
+                                                                          white-space: nowrap;
+                                                                          overflow: hidden;
+                                                                          text-overflow: ellipsis;
+                                                                        " readonly="true" @click="selectLine2(index)" />
                                                     <div class="chapter_upload_ud" style="z-index: 99">
                                                         <div class="chapter_upload_up" @click="
                                                             upCd2($event, index)
@@ -2182,12 +2183,12 @@
             <div slot="title" class="header-title">
                 <div style="color: #fff">查看文档</div>
                 <div @click="fullDialogVisible = false" style="
-                                                cursor: pointer;
-                                                position: absolute;
-                                                top: 20px;
-                                                right: 20px;
-                                                color: #fff;
-                                              ">
+                                                    cursor: pointer;
+                                                    position: absolute;
+                                                    top: 20px;
+                                                    right: 20px;
+                                                    color: #fff;
+                                                  ">
                     退出全屏
                 </div>
             </div>
@@ -2196,10 +2197,10 @@
                 <pdf v-else-if="fulltype == 9" :pdfUrl="fullUrl" style="width: 100%; height: 100%; overflow: auto">
                 </pdf>
                 <div class="wheel" v-if="fulltype == 6" style="
-                                                box-shadow: 0 0 6px 1px #f2f2f2;
-                                                width: 100%;
-                                                background: #f1f1f1;
-                                              ">
+                                                    box-shadow: 0 0 6px 1px #f2f2f2;
+                                                    width: 100%;
+                                                    background: #f1f1f1;
+                                                  ">
                     <div class="texttitle" style="width: 100%; box-sizing: border-box">
                         查看文档
                     </div>
@@ -2222,11 +2223,11 @@
             :before-close="handleClose" class="dialog_diy">
             <div>
                 <div style="
-                                                display: flex;
-                                                flex-wrap: nowrap;
-                                                flex-direction: column;
-                                                position: relative;
-                                              ">
+                                                    display: flex;
+                                                    flex-wrap: nowrap;
+                                                    flex-direction: column;
+                                                    position: relative;
+                                                  ">
                     <div class="queTop" style="padding: 20px 0 20px 0">
                         <div class="question">
                             <img src="../../../assets/icon/question.png" alt />
@@ -2306,11 +2307,11 @@
             :before-close="handleClose" class="dialog_diy">
             <div>
                 <div class="a_add_title" style="
-                                display: flex;
-                                flex-direction: row;
-                                align-items: center;
-                                justify-content: center;
-                              ">
+                                    display: flex;
+                                    flex-direction: row;
+                                    align-items: center;
+                                    justify-content: center;
+                                  ">
                     <div style="margin-right: 20px; font-size: 20px">投票标题:</div>
                     <el-input v-model="askJson.askTitle" placeholder="请输入标题" style="width: 400px"></el-input>
                 </div>
@@ -2358,11 +2359,11 @@
             :before-close="handleClose" class="dialog_diy dialog_diy3">
             <div>
                 <div class="a_add_title" style="
-                                display: flex;
-                                flex-direction: row;
-                                align-items: center;
-                                justify-content: center;
-                              ">
+                                    display: flex;
+                                    flex-direction: row;
+                                    align-items: center;
+                                    justify-content: center;
+                                  ">
                     <div style="margin-right: 20px; font-size: 20px">投票标题:</div>
                     <div style="font-size: 20px">{{ askJson.askTitle }}</div>
                 </div>
@@ -2398,11 +2399,11 @@
             :before-close="handleClose" class="dialog_diy dialog_diy3">
             <div>
                 <div class="a_add_title" style="
-                                display: flex;
-                                flex-direction: row;
-                                align-items: center;
-                                justify-content: center;
-                              ">
+                                    display: flex;
+                                    flex-direction: row;
+                                    align-items: center;
+                                    justify-content: center;
+                                  ">
                     <div style="margin-right: 20px; font-size: 20px">投票标题:</div>
                     <div style="font-size: 20px">{{ askJson.askTitle }}</div>
                 </div>
@@ -3031,6 +3032,9 @@ export default {
                     }
                 }
             }
+            if (this.oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5") {
+                typeT++
+            }
             if (this.courseName == "" || typeT != 3) {
                 if (typeT != 3) {
                     this.$message.error("分类为必选项目,请将信息补充完整后进行下一步");
@@ -3231,6 +3235,9 @@ export default {
                     }
                 }
             }
+            if (this.oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5") {
+                typeT++
+            }
             if (this.cidttt == 1) {
                 if (this.steps == 1) {
                     if (this.courseName != "" && typeT == 3) {
@@ -6505,10 +6512,10 @@ export default {
                                 this.CourseType[0][i].name = "项目类型";
                             }
                         }
-                        
+
                         if (res.data[2].length == 0 && res.data[3].length == 0) {
                             for (var j = 0; j < res.data[1].length; j++) {
-                                if(this.courseTypeId.indexOf(res.data[1][j].id) != -1 && _courseTypeId.indexOf(res.data[1][j].id) == -1){
+                                if (this.courseTypeId.indexOf(res.data[1][j].id) != -1 && _courseTypeId.indexOf(res.data[1][j].id) == -1) {
                                     _courseTypeId.push(res.data[1][j].id)
                                 }
                                 if (res.data[0][i].id == res.data[1][j].pid) {
@@ -6518,7 +6525,7 @@ export default {
                         } else {
                             if (res.data[2].length > 0) {
                                 for (var j = 0; j < res.data[2].length; j++) {
-                                    if(this.courseTypeId.indexOf(res.data[2][j].id) != -1 && _courseTypeId.indexOf(res.data[2][j].id) == -1){
+                                    if (this.courseTypeId.indexOf(res.data[2][j].id) != -1 && _courseTypeId.indexOf(res.data[2][j].id) == -1) {
                                         _courseTypeId.push(res.data[2][j].id)
                                     }
                                     if (res.data[0][i].id == res.data[2][j].pid) {
@@ -6528,7 +6535,7 @@ export default {
                             }
                             if (res.data[3].length > 0) {
                                 for (var j = 0; j < res.data[3].length; j++) {
-                                    if(this.courseTypeId.indexOf(res.data[3][j].id) != -1 && _courseTypeId.indexOf(res.data[3][j].id) == -1){
+                                    if (this.courseTypeId.indexOf(res.data[3][j].id) != -1 && _courseTypeId.indexOf(res.data[3][j].id) == -1) {
                                         _courseTypeId.push(res.data[3][j].id)
                                     }
                                     if (res.data[0][i].id == res.data[3][j].pid) {
@@ -10180,4 +10187,5 @@ ol {
     flex-direction: column;
     align-items: flex-end;
     width: 40px;
-}</style>
+}
+</style>

+ 3 - 3
src/components/pages/student/course.vue

@@ -23,8 +23,8 @@
             </el-select>
           </div> -->
           <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index">
-            <span>{{ item.name }}</span>
-            <el-select v-model="courseTypeId[item.id]" placeholder="请选择" @change="getTypeName">
+            <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>
@@ -1020,7 +1020,7 @@ export default {
   display: flex;
   flex-direction: row;
   align-items: center;
-  width: calc(100% / 3 - 50px);
+  max-width: calc(100% / 3 - 50px);
 }
 
 .all_choose>span {

Vissa filer visades inte eftersom för många filer har ändrats