mo 5 years ago
parent
commit
0e9f0cd600
2 changed files with 11 additions and 11 deletions
  1. 9 9
      src/views/teamDetail/components/studentList.vue
  2. 2 2
      vue.config.js

+ 9 - 9
src/views/teamDetail/components/studentList.vue

@@ -85,12 +85,12 @@
                    clearable
                    filterable
                    placeholder="报名缴费">
-          <el-option label="完成缴费"
-                     value="PAID_COMPLETED"></el-option>
-          <el-option label="未缴费"
-                     value="NON_PAYMENT"></el-option>
-          <el-option label="缴费"
-                     value="PROCESSING"></el-option>
+          <el-option label="已开启"
+                     value="1"></el-option>
+          <el-option label="未开启"
+                     value="0"></el-option>
+          <el-option label="缴费"
+                     value="2"></el-option>
         </el-select>
       </el-form-item>
       <el-form-item>
@@ -807,9 +807,9 @@ export default {
   filters: {
     studentPays (val) {
       let template = {
-        PAID_COMPLETED: "完成缴费",
-        NON_PAYMENT: "未缴费",
-        PROCESSING: "缴费中"
+        0: "未开启",
+        1: "已开启",
+        2: "已缴费"
       };
       return template[val];
     }

+ 2 - 2
vue.config.js

@@ -19,9 +19,9 @@ const name = defaultSettings.title || '管乐迷后台管理系统' // page titl
 // let target = 'https://online.dayaedu.com' //线上
 // let target = 'http://testadm.dayaedu.com/' //test环境
 // let target = 'http://192.168.3.27:8000' // 箭河
-// let target = 'http://192.168.3.28:8000' //邹璇
+let target = 'http://192.168.3.28:8000' //邹璇
 // let target = 'http://192.168.3.8:8000' //勇哥
-let target = 'http://admin.dayaedu.com' // 测试服
+// let target = 'http://admin.dayaedu.com' // 测试服
 // let target = 'http://192.168.3.151:8080' // 乔
 // All configuration item explanations can be find in https://cli.vuejs.org/config/
 module.exports = {