|
@@ -120,6 +120,7 @@
|
|
|
placeholder="学员手机号码"
|
|
|
></el-input>
|
|
|
<el-button type="primary" @click="search(3)">搜索</el-button>
|
|
|
+ <el-button @click="resetForm">重置</el-button>
|
|
|
</div>
|
|
|
<table-list
|
|
|
ref="tableList"
|
|
@@ -661,7 +662,7 @@ export default {
|
|
|
rowKey: "id",
|
|
|
gftsStatus: false,
|
|
|
gfUserStatus: false,
|
|
|
- xssbStatus:false,
|
|
|
+ xssbStatus: false,
|
|
|
backFatherBtn: {
|
|
|
status: false,
|
|
|
title: "未定义",
|
|
@@ -889,6 +890,16 @@ export default {
|
|
|
this.search();
|
|
|
},
|
|
|
methods: {
|
|
|
+ resetForm() {
|
|
|
+ this.formData = {
|
|
|
+ studyCountMore: "",
|
|
|
+ gradeId: this.$route.query.id,
|
|
|
+ status: "0,1",
|
|
|
+ pageSize: 10,
|
|
|
+ pageNum: 1,
|
|
|
+ };
|
|
|
+ this.search(3)
|
|
|
+ },
|
|
|
changeClass(row) {
|
|
|
this.dialogVisibleClass = true;
|
|
|
this.tabClassStudentInfo = row;
|
|
@@ -941,7 +952,7 @@ export default {
|
|
|
} else {
|
|
|
this.navText.gfUserStatus = false;
|
|
|
}
|
|
|
- this.navText.xssbStatus = res.data.includes(2)
|
|
|
+ this.navText.xssbStatus = res.data.includes(2);
|
|
|
resolve();
|
|
|
});
|
|
|
});
|