소스 검색

更新文案

lex-xin 3 년 전
부모
커밋
eed177daea
3개의 변경된 파일9개의 추가작업 그리고 9개의 파일을 삭제
  1. 3 3
      src/views/audition/ArrangeWork.vue
  2. 4 4
      src/views/visitManager/addVisit.vue
  3. 2 2
      src/views/visitManager/visitList.vue

+ 3 - 3
src/views/audition/ArrangeWork.vue

@@ -35,7 +35,7 @@
     </van-cell>
 
     <div class="accompanyHeader">
-      云教练曲目选择<span>(若作业内容非云教练曲目则无需选择)</span>
+      团练宝曲目选择<span>(若作业内容非团练宝曲目则无需选择)</span>
     </div>
     <van-tabs v-model="tabActive" color="#01C1B5">
       <van-tab v-for="(item, i) in params.subjectList" :title="item.subjectName" :name="item.id" :key="i" class="van-hairline--bottom">
@@ -58,7 +58,7 @@
           </template>
         </van-cell>
         <div class="addAccompaniment" v-if="item.musicScoreIdList.length < 3" @click="addCloud(item)">
-          <van-icon name="plus" size="16px" />增加云教练训练曲目
+          <van-icon name="plus" size="16px" />增加团练宝训练曲目
         </div>
       </van-tab>
     </van-tabs>
@@ -306,7 +306,7 @@ export default {
       if(notAccompanySong.length - subjectLength <= 0 && notAccompanySong != 0 && type[0] != 1) {
         // console.log('选择曲目')
         this.$dialog.confirm({
-          message: notAccompanySong.join(',') + '声部未选择云教练训练曲目,是否继续布置作业?',
+          message: notAccompanySong.join(',') + '声部未选择团练宝训练曲目,是否继续布置作业?',
           confirmButtonColor: '#01C1B5'
         }).then(() => {
           // on confirm

+ 4 - 4
src/views/visitManager/addVisit.vue

@@ -230,7 +230,7 @@ export default {
         headerStatus: true, // 头部是否展示
         studentStatus: false, // 上课学生状态
       },
-      typeList: [{ name: "课程推荐" }, { name: "常规回访" }, { name: "云教练" }, { name: "其它" }],
+      typeList: [{ name: "课程推荐" }, { name: "常规回访" }, { name: "团练宝" }, { name: "其它" }],
       visit: {
         status: false,
         type: null,
@@ -242,7 +242,7 @@ export default {
       form: {
         teacherId: null,
         studentId: query.userId || query.studentId || null,
-        type: query.userId ? '云教练' : null,
+        type: query.userId ? '团练宝' : null,
         purpose:  query.userId ? '体验回访' : null,
         overview: "",
         feedback: "",
@@ -408,7 +408,7 @@ export default {
           visit.data = [{ name: "新课推荐" }, { name: "续费提醒" }];
         } else if (form.type == "常规回访") {
           visit.data = [{ name: "课后及作业回访" }, { name: "练习及乐团表现" }];
-        } else if(form.type == '云教练') {
+        } else if(form.type == '团练宝') {
           visit.data = [{ name: "体验回访" }]
         } else {
           this.$toast("请选择回访类型");
@@ -447,7 +447,7 @@ export default {
       this.dataForm.status = false;
     },
     onEnListShow() {
-      // 从云教练统计来的,不许改时间,默认当前时间
+      // 从团练宝统计来的,不许改时间,默认当前时间
       if (this.id || this.visitFlag) {
         return;
       }

+ 2 - 2
src/views/visitManager/visitList.vue

@@ -87,7 +87,7 @@ export default {
         { text: "全部", value: "全部" },
         { text: "课程推荐", value: "课程推荐" },
         { text: "常规回访", value: "常规回访" },
-        { text: "云教练", value: "云教练" },
+        { text: "团练宝", value: "团练宝" },
         { text: "其它", value: "其它" },
       ],
       option2: [],
@@ -197,7 +197,7 @@ export default {
           { text: "课后及作业回访", value: "课后及作业回访" },
           { text: "练习及乐团表现", value: "练习及乐团表现" },
         ];
-      } else if (this.value1 == "云教练") {
+      } else if (this.value1 == "团练宝") {
         this.purposeStatus = false;
         this.option2 = [{ text: "体验回访", value: "体验回访" }];
       } else if (this.value1 == "其它") {