Browse Source

添加搜索功能

zengyicheng 2 years ago
parent
commit
bfa4b6be96
2 changed files with 37 additions and 1 deletions
  1. 19 1
      src/components/pages/Ttype2.vue
  2. 18 0
      src/components/pages/Ttype2S.vue

+ 19 - 1
src/components/pages/Ttype2.vue

@@ -42,13 +42,24 @@
               v-if="step == 0"
               >添加学校</el-button
             >
+            <div class="student_search" v-if="step == 0">
+              <span style="margin-right: 10px">
+                <el-input
+                  placeholder="请输入班级名称"
+                  v-model="sSchoolName"
+                  clearable
+                >
+                </el-input>
+              </span>
+              <el-button type="primary" @click="searchSchool">查询</el-button>
+            </div>
             <div v-if="step == 1" class="student_search1">
               <el-breadcrumb
                 separator-class="el-icon-arrow-right"
                 style="margin-top: 15px"
               >
                 <el-breadcrumb-item>
-                  <span @click="step = 0;" style="cursor: pointer"
+                  <span @click="step = 0" style="cursor: pointer"
                     >学校列表</span
                   ></el-breadcrumb-item
                 >
@@ -511,6 +522,7 @@ export default {
       uploadLoading: false,
       checkList: [],
       courseList: [],
+      sSchoolName: "",
     };
   },
   mounted() {
@@ -729,9 +741,15 @@ export default {
       this.bannerCourse = this.checkBannerCourse;
       this.dialogVisible7 = false;
     },
+    searchSchool() {
+      this.page = 1;
+      this.selectSchool();
+    },
     selectSchool() {
       this.isLoading = true;
       let params = {
+        cu: "",
+        cn: this.sSchoolName,
         page: this.page,
       };
       this.ajax

+ 18 - 0
src/components/pages/Ttype2S.vue

@@ -42,6 +42,17 @@
               v-if="step == 0"
               >添加学校</el-button
             >
+            <div class="student_search" v-if="step == 0">
+              <span style="margin-right: 10px">
+                <el-input
+                  placeholder="请输入班级名称"
+                  v-model="sSchoolName"
+                  clearable
+                >
+                </el-input>
+              </span>
+              <el-button type="primary" @click="searchSchool">查询</el-button>
+            </div>
             <div v-if="step == 1" class="student_search1">
               <el-breadcrumb
                 separator-class="el-icon-arrow-right"
@@ -511,6 +522,7 @@ export default {
       uploadLoading: false,
       checkList: [],
       courseList: [],
+      sSchoolName:"",
     };
   },
   mounted() {
@@ -729,9 +741,15 @@ export default {
       this.bannerCourse = this.checkBannerCourse;
       this.dialogVisible7 = false;
     },
+    searchSchool() {
+      this.page = 1;
+      this.selectSchool();
+    },
     selectSchool() {
       this.isLoading = true;
       let params = {
+        cu: "",
+        cn: this.sSchoolName,
         page: this.page,
       };
       this.ajax