Browse Source

提交一下

1
mo 3 years ago
parent
commit
7888926730
2 changed files with 13 additions and 2 deletions
  1. 1 1
      src/constant/index.js
  2. 12 1
      src/views/smallStudentManager/components/tableList.vue

+ 1 - 1
src/constant/index.js

@@ -438,7 +438,7 @@ export const issue = {
 export const feedbackType = {
   'THINKING':'考虑中',
   'PENDING_PAYMENT':'确认缴费待缴费',
-  'LOST':'流失',
+  'LOST':'回访流失',
   'PAUSE':'暂停',
   'OTHER':'其他'
 }

+ 12 - 1
src/views/smallStudentManager/components/tableList.vue

@@ -45,6 +45,7 @@
           <el-option label="在读" value="NORMAL"></el-option>
           <el-option label="沉睡" value="SLEEPY"></el-option>
           <el-option label="流失" value="LOST"></el-option>
+           <el-option label="暂停" value="PAUSE"></el-option>
         </el-select>
       </el-form-item>
       <el-form-item prop="feedbackType">
@@ -291,7 +292,8 @@
         <el-table-column align="center" prop="organName" label="学员状态">
           <template slot-scope="scope">
             <div>
-              <p
+              {{scope.row.studentBasicInfo.studentStatus}}
+              <!-- <p
                 v-if="
                   (scope.row.noScheduleNum || scope.row.subCourseNum) &&
                   (scope.row.latelyYearCourseConsumer ||
@@ -318,6 +320,15 @@
               >
                 流失
               </p>
+                 <p
+                v-if="
+                  scope.row.studentBasicInfo.courseBalance &&
+                  !scope.row.noScheduleNum &&
+                  !scope.row.subCourseNum
+                "
+              >
+                暂停
+              </p> -->
             </div>
           </template>
         </el-table-column>