zhujindu 5 місяців тому
батько
коміт
016a19d839
1 змінених файлів з 3 додано та 2 видалено
  1. 3 2
      src/views/week/dailyDetails.vue

+ 3 - 2
src/views/week/dailyDetails.vue

@@ -633,13 +633,14 @@ export default {
       shareImgFlag: false,
       urlList: [],
       setDailyDetailsBoxFlag: true,
-      source: '',
+      sourceType: '',
       checkedPlan: true, //今日总结&明日规划
       //
     };
   },
   created() {
     this.source = this.$route.query.source || '';
+    this.sourceType = this.$route.query.sourceType || '';
     this.powerGrade = localStorage.getItem('powerGrade');
     this.getDetailById();
   },
@@ -763,7 +764,7 @@ export default {
           }
         }
         this.imgList = imgList;
-        if (this.source == 'daily') {
+        if (this.sourceType == 'daily') {
           this.$nextTick(() => {
             this.clickShareFlag(-1);
           });