|
@@ -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
|