瀏覽代碼

Merge branch '01/21VipReset' into online

wolyshaw 4 年之前
父節點
當前提交
5fbe468b19
共有 1 個文件被更改,包括 18 次插入0 次删除
  1. 18 0
      src/views/teamDetail/components/studentList.vue

+ 18 - 0
src/views/teamDetail/components/studentList.vue

@@ -124,6 +124,17 @@
           <el-option label="已缴费" value="1"></el-option>
           <el-option label="已缴费" value="1"></el-option>
         </el-select>
         </el-select>
       </el-form-item>
       </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-form-item prop="isActive">
         <el-select
         <el-select
           v-model.trim="searchForm.isActive"
           v-model.trim="searchForm.isActive"
@@ -260,6 +271,11 @@
             <div>{{ scope.row.paymentStatus | studentPays }}</div>
             <div>{{ scope.row.paymentStatus | studentPays }}</div>
           </template>
           </template>
         </el-table-column>
         </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="是否激活">
         <el-table-column align="center" label="是否激活">
           <template slot-scope="scope">
           <template slot-scope="scope">
             <div>{{ scope.row.isActive ? "是" : "否" }}</div>
             <div>{{ scope.row.isActive ? "是" : "否" }}</div>
@@ -767,6 +783,7 @@ export default {
         isPay: "", // 是否缴费
         isPay: "", // 是否缴费
         search: "",
         search: "",
         isActive: "",
         isActive: "",
+        oweFlag: '',
         classGroupId: null,
         classGroupId: null,
         hasCourse: null,
         hasCourse: null,
         carePackage: null,
         carePackage: null,
@@ -1137,6 +1154,7 @@ export default {
         hasCourse: this.searchForm.hasCourse || null,
         hasCourse: this.searchForm.hasCourse || null,
         comeOnPackage: this.searchForm.comeOnPackage || null,
         comeOnPackage: this.searchForm.comeOnPackage || null,
         carePackage: this.searchForm.carePackage || null,
         carePackage: this.searchForm.carePackage || null,
+        oweFlag: this.searchForm.oweFlag || null,
       };
       };
       getTeamStudentList(obj).then((res) => {
       getTeamStudentList(obj).then((res) => {
         if (res.code == 200) {
         if (res.code == 200) {