|
@@ -124,6 +124,17 @@
|
|
|
<el-option label="已缴费" value="1"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item prop="oweFlag">
|
|
|
+ <el-select
|
|
|
+ v-model.trim="searchForm.oweFlag"
|
|
|
+ clearable
|
|
|
+ filterable
|
|
|
+ placeholder="是否欠费"
|
|
|
+ >
|
|
|
+ <el-option label="否" value="0"></el-option>
|
|
|
+ <el-option label="是" value="1"></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item prop="isActive">
|
|
|
<el-select
|
|
|
v-model.trim="searchForm.isActive"
|
|
@@ -236,6 +247,11 @@
|
|
|
<div>{{ scope.row.paymentStatus | studentPays }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column align="center" label="是否欠费">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>{{ scope.row.oweFlag | yesOrNo }}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center" label="是否激活">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{ scope.row.isActive ? "是" : "否" }}</div>
|
|
@@ -731,6 +747,7 @@ export default {
|
|
|
isPay: "", // 是否缴费
|
|
|
search: "",
|
|
|
isActive: "",
|
|
|
+ oweFlag: '',
|
|
|
classGroupId: null,
|
|
|
hasCourse: null
|
|
|
},
|
|
@@ -1094,6 +1111,7 @@ export default {
|
|
|
search: this.searchForm.search || null,
|
|
|
isActive: this.searchForm.isActive || null,
|
|
|
classGroupId: this.searchForm.classGroupId || null,
|
|
|
+ oweFlag: this.searchForm.oweFlag || null,
|
|
|
hasCourse: this.searchForm.hasCourse || null
|
|
|
};
|
|
|
getTeamStudentList(obj).then((res) => {
|