Browse Source

学生列表完成

1
mo 4 years ago
parent
commit
b6031ffafb

+ 18 - 2
src/views/studentManager/studentList.vue

@@ -220,9 +220,14 @@
           <!-- <el-table-column align="center" label="预约网管课">
             <template slot-scope="scope">{{ scope.row.isMake ? '是' : '否' }}</template>
           </el-table-column> -->
-          <el-table-column align="center" label="是否有网管课">
+          <el-table-column align="center" label="网管课剩余课时">
             <template slot-scope="scope">{{
-              scope.row.hasPracticeCourse ? "是" : "否"
+              scope.row.noStartPracticeCourseNum
+            }}</template>
+          </el-table-column>
+               <el-table-column align="center" label="vip课剩余课时">
+            <template slot-scope="scope">{{
+              scope.row.noStartVipCourseNum
             }}</template>
           </el-table-column>
           <el-table-column align="center" label="是否运营">
@@ -265,6 +270,17 @@
               </div>
             </template>
           </el-table-column>
+                 <el-table-column
+            align="center"
+            prop="balance"
+            label="账户余额(元)"
+          >
+            <template slot-scope="scope">
+              <div>
+                {{ scope.row.balance | moneyFormat }}
+              </div>
+            </template>
+          </el-table-column>
           <el-table-column
             align="center"
             prop="carePackage"

+ 0 - 0
src/views/workBenchManager/requestComponent/endRequest.vue


+ 0 - 0
src/views/workBenchManager/requestComponent/progressRequest.vue