ソースを参照

教师中心与智能表单

SanHQin 2 日 前
コミット
9946091715

+ 6 - 5
src/components/pages/test/check/index.vue

@@ -1340,6 +1340,7 @@
                         @change="submissionTimePickerChange"
                         type="daterange"
                         range-separator="▼"
+                        :picker-options="pickerOptions([])"
                       >
                       </el-date-picker>
                     </div>
@@ -2358,10 +2359,9 @@ export default {
     pickerOptions(){
       return (dataList)=>{
         let _result = {
-          // shortcuts:[]
+          shortcuts:[]
         }
         if(dataList && dataList.length>0){
-          _result.shortcuts = [];
           for(let i = 0;i<dataList.length;i++){
             if(dataList[i].time.length<=0)continue;
             _result.shortcuts.push({
@@ -2373,7 +2373,9 @@ export default {
               }
             })
           }
-          if(this.sortTime.length>0){
+
+        }
+        if(this.sortTime.length>0){
             this.sortTime.forEach(i=>{
               _result.shortcuts.push({
                 text:i.title?i.title:"-",
@@ -2383,7 +2385,6 @@ export default {
               })
             })
           }
-        }
         return _result;
       }
     }
@@ -4602,7 +4603,7 @@ ${JSON.stringify(item.array)}
       // this.getClass2()
       this.changeHeight();
     });
-    // this.getClassSortTime();
+    this.getClassSortTime();
   },
 };
 </script>

+ 6 - 5
src/components/pages/testPerson/examine/index.vue

@@ -180,11 +180,12 @@
           </div>
         </div>
       </div>
-    </div>
-
-    <div class="brief" v-if="brief">
+      <div class="brief" v-if="brief">
       <span v-html="brief" style="white-space: pre-wrap;word-break: break-all;"></span>
     </div>
+    </div>
+
+
 
     <!-- 点击数据来源 -->
     <el-dialog
@@ -684,9 +685,9 @@ export default {
   width: 100%;
   min-width: 1300px;
   margin: 0 auto;
-  height: 100%;
+  height: auto;
   box-sizing: border-box;
-  padding-bottom: 60px;
+  padding-bottom: 10px;
   font-size: 14px;
 }