Browse Source

提交一下

1
mo 2 years ago
parent
commit
b572a4964f

+ 4 - 4
src/constant/index.js

@@ -443,12 +443,12 @@ export const issue = {
 
 // 小课回访状态
 export const feedbackType = {
-  THINKING: "考虑中",
-  PENDING_PAYMENT: "确认缴费待缴费",
-  LOST: "回访流失",
+  NORMAL: "在读",
   PAUSE: "暂停",
+  SLEEPY: "沉睡",
+  LOST: "流失",
   OTHER: "其他",
-  NORMAL: "在读"
+
 };
 
 export const feedbackTypeDesc = {

+ 6 - 6
src/utils/searchArray.js

@@ -642,16 +642,16 @@ export const visitChiose1 = [
     label: "小课回访",
     children: [
       {
-        value: "VIP课回访",
-        label: "VIP课回访"
+        value: "续费类回访",
+        label: "续费类回访" 
       },
       {
-        value: "乐理课回访",
-        label: "乐理课回访"
+        value: "服务回访",
+        label: "服务回访"
       },
       {
-        value: "网管课回访",
-        label: "网管课回访"
+        value: "其他",
+        label: "其他"
       }
     ]
   },

+ 2 - 2
src/views/smallStudentManager/components/addVisit.vue

@@ -40,7 +40,7 @@
           style="width: 80% !important"
           placeholder="请输入学员情况"
           :rows="3"
-          maxlength="50"
+          maxlength="400"
           show-word-limit
         ></el-input>
       </el-form-item>
@@ -78,7 +78,7 @@
           style="width: 80% !important"
           placeholder="原因"
           :rows="3"
-          maxlength="50"
+          maxlength="400"
           show-word-limit
         ></el-input>
       </el-form-item>

+ 2 - 1
src/views/smallStudentManager/components/visiList.vue

@@ -152,9 +152,10 @@
       :visible.sync="visitVisiable"
       append-to-body
     >
+    <!--  :useVisitType="useVisitType" -->
       <addVisit
         :detail="detail"
-        :useVisitType="useVisitType"
+
         @close="visitVisiable = false"
         @submited="refresh"
       />

+ 1 - 1
src/views/withdrawal-application/modals/visit.vue

@@ -76,7 +76,7 @@
         ></el-input>
       </el-form-item>
       <el-form-item
-        label="家长反馈"
+        label="学员状态"
         prop="feedbackType"
         v-if="visitForm.visitType[0] == '小课回访'"
         :rules="[{ required: true, message: '选择家长反馈' }]"