2 İşlemeler 152dc5a7b4 ... b75c90af60

Yazar SHA1 Mesaj Tarih
  lzw b75c90af60 Merge branch 'master' of https://git.cocorobo.cn/CocoRoboLabs/pblUserManage 10 ay önce
  lzw 5e8a23d31a 账号列表更新 10 ay önce
2 değiştirilmiş dosya ile 199 ekleme ve 471 silme
  1. 188 471
      src/components/list.vue
  2. 11 0
      src/components/schoolList.vue

Dosya farkı çok büyük olduğundan ihmal edildi
+ 188 - 471
src/components/list.vue


+ 11 - 0
src/components/schoolList.vue

@@ -7,6 +7,11 @@
                     style="margin-right: 10px; width: 200px"></el-input>
                 <el-input v-model="checkOrg" placeholder="请输入组织" size="normal" clearable @input="changeOrg"
                     style="margin-right: 10px; width: 200px"></el-input>
+                <el-select v-model="checkArea" placeholder="选择区域" clearable filterable @change="changeArea"
+                    style="margin-right: 10px">
+                    <el-option v-for="item in regionCList" :key="item.id" :label="item.name" :value="item.name">
+                    </el-option>
+                </el-select>
 
                 <el-button type="primary" size="small" @click="add_school_dialog = true;">新增学校</el-button>
             </div>
@@ -235,6 +240,7 @@ export default {
             cn_school: [],
             checkOid: "",
             checkOrg: "",
+            checkArea: "",
             currentPage: 1,
             pageSize: 10,
             total: 0,
@@ -277,12 +283,17 @@ export default {
             this.currentPage = 1; // 重置当前页
             this.getSchool(); // 调用获取数据的方法
         },
+        changeArea() {
+            this.currentPage = 1;
+            this.getSchool();
+        },
         getSchool() {
             let params = [
                 {
                     functionName: "getSchoolList",
                     sName: this.checkOid,
                     oName: this.checkOrg,
+                    area: this.checkArea,
                     page: this.currentPage,
                     num: this.pageSize,
                 }

Bu fark içinde çok fazla dosya değişikliği olduğu için bazı dosyalar gösterilmiyor