3
0

2 Commity 152dc5a7b4 ... b75c90af60

Autor SHA1 Správa Dátum
  lzw b75c90af60 Merge branch 'master' of https://git.cocorobo.cn/CocoRoboLabs/pblUserManage 1 rok pred
  lzw 5e8a23d31a 账号列表更新 1 rok pred
2 zmenil súbory, kde vykonal 199 pridanie a 471 odobranie
  1. 188 471
      src/components/list.vue
  2. 11 0
      src/components/schoolList.vue

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 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,
                 }

Niektoré súbory nie sú zobrazené, pretože je v týchto rozdielových dátach zmenené mnoho súborov