|
@@ -455,11 +455,11 @@
|
|
|
prop="actualSubjectName"
|
|
|
align="center"
|
|
|
>
|
|
|
- <template slot-scope="scope">
|
|
|
- <div>
|
|
|
- {{scope.row.subjectName}} / {{scope.row.actualSubjectName}}
|
|
|
- </div>
|
|
|
- </template>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ {{ scope.row.subjectName }} / {{ scope.row.actualSubjectName }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="是否回访" prop="paymentStatus" align="center">
|
|
@@ -1823,6 +1823,19 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
getCheckNum(row) {
|
|
|
+ this.rules.page = 1;
|
|
|
+ this.rules.limit = 10;
|
|
|
+ this.searchFrom = {
|
|
|
+ name: null,
|
|
|
+ subject: null, // 专业
|
|
|
+ isAllowAdjust: null, // 是否允许调剂
|
|
|
+ currentGrade: null,
|
|
|
+ paymentStatus: null,
|
|
|
+ visited: null,
|
|
|
+ hasCloudTeacher: null,
|
|
|
+ payingStatus: null,
|
|
|
+ noneNeedCloudTeacher: null,
|
|
|
+ };
|
|
|
this.searchFrom.subject = row.subjectId;
|
|
|
|
|
|
this.searchFrom.payingStatus = 2;
|
|
@@ -1830,11 +1843,37 @@ export default {
|
|
|
this.search();
|
|
|
},
|
|
|
getpayingNum(row) {
|
|
|
+ this.rules.page = 1;
|
|
|
+ this.rules.limit = 10;
|
|
|
+ this.searchFrom = {
|
|
|
+ name: null,
|
|
|
+ subject: null, // 专业
|
|
|
+ isAllowAdjust: null, // 是否允许调剂
|
|
|
+ currentGrade: null,
|
|
|
+ paymentStatus: null,
|
|
|
+ visited: null,
|
|
|
+ hasCloudTeacher: null,
|
|
|
+ payingStatus: null,
|
|
|
+ noneNeedCloudTeacher: null,
|
|
|
+ };
|
|
|
this.searchFrom.subject = row.subjectId;
|
|
|
this.searchFrom.payingStatus = 1;
|
|
|
this.search();
|
|
|
},
|
|
|
getpayNum(row) {
|
|
|
+ this.rules.page = 1;
|
|
|
+ this.rules.limit = 10;
|
|
|
+ this.searchFrom = {
|
|
|
+ name: null,
|
|
|
+ subject: null, // 专业
|
|
|
+ isAllowAdjust: null, // 是否允许调剂
|
|
|
+ currentGrade: null,
|
|
|
+ paymentStatus: null,
|
|
|
+ visited: null,
|
|
|
+ hasCloudTeacher: null,
|
|
|
+ payingStatus: null,
|
|
|
+ noneNeedCloudTeacher: null,
|
|
|
+ };
|
|
|
this.searchFrom.subject = row.subjectId;
|
|
|
this.searchFrom.paymentStatus = 2 + "";
|
|
|
this.search();
|