Browse Source

Merge branch '03/03GRADE' into test

lex-xin 4 năm trước cách đây
mục cha
commit
c9c2f9635d
1 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 4 4
      src/views/main/studentLeaveList.vue

+ 4 - 4
src/views/main/studentLeaveList.vue

@@ -21,10 +21,10 @@
                         placeholder="学员编号/姓名/手机号"
                     ></el-input>
                 </el-form-item>
-                <el-form-item prop="organIds">
+                <el-form-item prop="organId">
                     <el-select
                         placeholder="请选择分部"
-                        v-model="searchForm.organIds"
+                        v-model="searchForm.organId"
                         clearable
                     >
                         <el-option
@@ -127,7 +127,7 @@ export default {
             searchForm: {
                 search: null,
                 studentSearch: null,
-                organIds: null,
+                organId: null,
             },
             visitVisible: false,
             detail: null,
@@ -147,7 +147,7 @@ export default {
     mounted() {
         const { query } = this.$route
         if (query.organId) {
-            this.searchForm.organIds = Number(query.organId)
+            this.searchForm.organId = Number(query.organId)
         }
         this.$store.dispatch("setBranchs");