Răsfoiți Sursa

照片详情功能新增

lideyin 4 ani în urmă
părinte
comite
2b8b9b3424

+ 5 - 5
src/modules/examwork/view/stageSpecialSettings.vue

@@ -14,7 +14,7 @@
           <!-- 表单 -->
           <el-form inline :model="formSearch">
             <el-row>
-              <el-col :span="6">
+              <el-col :span="7">
                 <el-form-item label="考试名称">
                   <el-input :disabled="true" v-model="examName"></el-input>
                 </el-form-item>
@@ -24,7 +24,7 @@
                   <el-input :disabled="true" v-model="examTypeName"></el-input>
                 </el-form-item>
               </el-col>
-              <el-col :span="12">
+              <el-col :span="11">
                 <el-form-item label="时间范围">
                   <el-date-picker
                     class="input"
@@ -42,8 +42,8 @@
               </el-col>
             </el-row>
             <el-row>
-              <el-col :span="6">
-                <el-form-item label="场次号">
+              <el-col :span="7">
+                <el-form-item label=" 场次号">
                   <el-input
                     placeholder="场次号"
                     v-model="formSearch.stageOrder"
@@ -59,7 +59,7 @@
                   </el-radio-group>
                 </el-form-item>
               </el-col>
-              <el-col :span="12">
+              <el-col :span="11">
                 <el-form-item>
                   <el-button
                     size="small"

+ 44 - 1
src/modules/oe/views/captureDetail.vue

@@ -103,6 +103,12 @@
           <el-row class="margin-top-10">
             <el-col :span="24">
               <el-table :data="examAuditData" border>
+                <el-table-column
+                  sortable
+                  label="切屏次数"
+                  prop="switchScreenCount"
+                  width="100"
+                ></el-table-column>
                 <el-table-column
                   sortable
                   label="校验(次)"
@@ -186,6 +192,29 @@
               </div>
             </el-col>
           </el-row>
+          <el-row class="margin-top-10">
+            <el-col :span="24">
+              <el-table :data="examProcessRecordData" border>
+                <el-table-column
+                  sortable
+                  label="考试过程"
+                  prop="processName"
+                  width="150"
+                ></el-table-column>
+                <el-table-column
+                  sortable
+                  label="日期"
+                  prop="recordTime"
+                  width="100"
+                ></el-table-column>
+                <el-table-column
+                  sortable
+                  label="客户端ip"
+                  prop="sourceIp"
+                ></el-table-column>
+              </el-table>
+            </el-col>
+          </el-row>
         </el-col>
       </el-row>
       <el-dialog title="审核" :visible.sync="dialogFormVisible">
@@ -255,7 +284,8 @@ export default {
       },
       currentPaths: ["抓拍详情"],
       disciplineTypeList: [],
-      pendingOperate: false
+      pendingOperate: false,
+      examProcessRecordData: []
     };
   },
   computed: {
@@ -292,6 +322,18 @@ export default {
           }
         });
     },
+    getExamProcessRecordData() {
+      var param = new URLSearchParams({
+        examRecordDataId: this.examRecordDataId
+      });
+      this.$http
+        .get("/api/ecs_oe_admin/exam/capture/getExamProcessRecords", param)
+        .then(response => {
+          if (response.data) {
+            this.examProcessRecordData.push(response.data);
+          }
+        });
+    },
     listExamCapture() {
       var param = new URLSearchParams({
         examRecordDataId: this.examRecordDataId
@@ -400,6 +442,7 @@ export default {
     this.getExamAuditData();
     this.listExamCapture();
     this.getDisciplineTypeList("");
+    this.getExamProcessRecordData();
   }
 };
 </script>