lideyin vor 4 Jahren
Ursprung
Commit
212d54a957

+ 8 - 5
src/modules/oe/views/alreadyAudited.vue

@@ -103,7 +103,7 @@
             <el-form-item label="审核时间">
               <el-date-picker
                 class="input"
-                v-model="AuditExamDatetimeRange"
+                v-model="auditExamDatetimeRange"
                 type="datetimerange"
                 start-placeholder="开始日期"
                 range-separator="至"
@@ -166,9 +166,9 @@
                   type="text"
                   >{{ scope.row.examRecordDataId }}</el-button
                 >
-                <span v-show="!currentPagePrivileges.SNAPSHOT_DETAILS">{{
-                  scope.row.examRecordDataId
-                }}</span>
+                <span v-show="!currentPagePrivileges.SNAPSHOT_DETAILS">
+                  {{ scope.row.examRecordDataId }}
+                </span>
               </template>
             </el-table-column>
             <el-table-column
@@ -445,7 +445,9 @@ export default {
     /**
      * 当前页改变时触发
      */
-    handleCurrentChange() {
+    handleCurrentChange(val) {
+      debugger;
+      this.form.pageNo = val;
       this.search();
     },
     gotoCaptureDetail(examRecordDataId) {
@@ -528,6 +530,7 @@ export default {
     }
   },
   created() {
+    this.backFill();
     this.getDisciplineTypeList("");
   }
 };

+ 3 - 3
src/modules/oe/views/awaitingAudit.vue

@@ -215,9 +215,9 @@
                   type="text"
                   >{{ scope.row.dataId }}</el-button
                 >
-                <span v-show="!currentPagePrivileges.SNAPSHOT_DETAILS">
-                  {{ scope.row.dataId }}
-                </span>
+                <span v-show="!currentPagePrivileges.SNAPSHOT_DETAILS">{{
+                  scope.row.dataId
+                }}</span>
               </template>
             </el-table-column>
             <el-table-column

+ 14 - 13
src/modules/oe/views/captureDetail.vue

@@ -100,7 +100,7 @@
               </el-table>
             </el-col>
           </el-row>
-          <el-row class="margin-top-10">
+          <el-row class="margin-top-20">
             <el-col :span="24">
               <el-table :data="examAuditData" border>
                 <el-table-column
@@ -192,20 +192,20 @@
               </div>
             </el-col>
           </el-row>
-          <el-row class="margin-top-10">
+          <el-row class="margin-top-20">
             <el-col :span="24">
               <el-table :data="examProcessRecordData" border>
                 <el-table-column
                   sortable
                   label="考试过程"
                   prop="processName"
-                  width="150"
+                  width="200"
                 ></el-table-column>
                 <el-table-column
                   sortable
                   label="日期"
                   prop="recordTime"
-                  width="100"
+                  width="200"
                 ></el-table-column>
                 <el-table-column
                   sortable
@@ -323,16 +323,17 @@ export default {
         });
     },
     getExamProcessRecordData() {
-      var param = new URLSearchParams({
-        examRecordDataId: this.examRecordDataId
+      // var param = new URLSearchParams({
+      //   examRecordDataId: this.examRecordDataId,
+      // });
+      let url =
+        "/api/ecs_oe_admin/exam/capture/getExamProcessRecords?examRecordDataId=" +
+        this.examRecordDataId;
+      this.$http.get(url).then(response => {
+        if (response.data) {
+          this.examProcessRecordData = response.data;
+        }
       });
-      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({