mo 5 роки тому
батько
коміт
76f1ebd0d2
1 змінених файлів з 21 додано та 2 видалено
  1. 21 2
      src/views/operateManager/operateStudent.vue

+ 21 - 2
src/views/operateManager/operateStudent.vue

@@ -76,6 +76,16 @@
           </el-select>
         </el-form-item>
         <el-form-item>
+          <el-select placeholder="有乐团网管课"
+                     v-model="searchForm.hasMusicNetWork"
+                     clearable>
+            <el-option label="是"
+                       value="1"></el-option>
+            <el-option label="否"
+                       value="0"></el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item>
           <el-button type="danger"
                      @click="search">搜索</el-button>
           <el-button @click="onReSet"
@@ -132,6 +142,13 @@
               <div>{{scope.row.buyPracticeTimes?'是':'否'}}</div>
             </template>
           </el-table-column>
+          <el-table-column align="center"
+                           prop="buyPracticeTimes"
+                           label="有乐团网管课">
+            <template slot-scope="scope">
+              <div>{{scope.row.musicNetWorkTimes?'是':'否'}}</div>
+            </template>
+          </el-table-column>
         </el-table>
         <pagination :total="rules.total"
                     :page.sync="rules.page"
@@ -161,7 +178,8 @@ export default {
         hasBuyPractice: null,
         hasFreePractice: null,
         hasVip: null,
-        operatingTag: null
+        operatingTag: null,
+        hasMusicNetWork: null
       },
       teacherList: [],
       tableList: [],
@@ -303,7 +321,8 @@ export default {
         hasVip: this.searchForm.hasVip || null,
         operatingTag: this.searchForm.operatingTag || null,
         page: this.rules.page,
-        rows: this.rules.limit
+        rows: this.rules.limit,
+        hasMusicNetWork: this.searchForm.hasMusicNetWork || null
       };
       return obj;
     }