zhangjie 2 years ago
parent
commit
8db82d9161

+ 2 - 2
src/modules/record/components/ScanTaskDetailDialog.vue

@@ -23,8 +23,8 @@
         <el-table-column prop="teacherName" label="任课老师"></el-table-column>
         <el-table-column prop="teacherName" label="任课老师"></el-table-column>
         <el-table-column prop="teachClazzName" label="教学班"></el-table-column>
         <el-table-column prop="teachClazzName" label="教学班"></el-table-column>
         <el-table-column
         <el-table-column
-          prop="scanCount"
-          label="扫描张数"
+          prop="bindCount"
+          label="绑定张数"
           width="120"
           width="120"
         ></el-table-column>
         ></el-table-column>
         <!-- <el-table-column
         <!-- <el-table-column

+ 26 - 1
src/modules/record/views/ArchivesDetail.vue

@@ -67,6 +67,29 @@
             clearable
             clearable
           ></el-input>
           ></el-input>
         </el-form-item>
         </el-form-item>
+        <el-form-item label="绑定数量范围:">
+          <el-input-number
+            v-model="filter.minBindCount"
+            style="width: 110px"
+            :min="0"
+            :max="100"
+            :step="1"
+            step-strictly
+            :controls="false"
+            placeholder="最小绑定数量"
+          ></el-input-number>
+          <span>~</span>
+          <el-input-number
+            v-model="filter.maxBindCount"
+            style="width: 110px"
+            :min="0"
+            :max="100"
+            :step="1"
+            step-strictly
+            :controls="false"
+            placeholder="最大绑定数量"
+          ></el-input-number>
+        </el-form-item>
 
 
         <el-form-item label-width="0px">
         <el-form-item label-width="0px">
           <el-button type="primary" @click="toPage(1)">查询</el-button>
           <el-button type="primary" @click="toPage(1)">查询</el-button>
@@ -208,7 +231,9 @@ export default {
         teacherName: "",
         teacherName: "",
         teachClazzName: "",
         teachClazzName: "",
         isBind: "",
         isBind: "",
-        param: ""
+        param: "",
+        minBindCount: undefined,
+        maxBindCount: undefined
       },
       },
       BOUND_TYPE,
       BOUND_TYPE,
       current: 1,
       current: 1,