shanbinzhang 1 hete
szülő
commit
5b334c25c4

+ 10 - 2
src/views/dataEntry_manage/databaseComponents/edbCollectDia.vue

@@ -24,9 +24,11 @@
             {{ item.ClassifyName }}
           </el-tag>
         </div>
-        <span class="add-cont" @click="$parent.handleOpenCollectClassify">
+        <div class="add-cont" @click="$parent.handleOpenCollectClassify">
           <i class="el-icon-circle-plus-outline" />新增
-        </span>
+        </div>
+
+        <p>提示:收藏后的指标,请在{{collectPath}}查看</p>
       </div>
       <div class="dia-bot">
         <el-button type="primary" style="margin-right: 20px" plain @click="cancelHandle">{{$t('Dialog.cancel_btn')}}</el-button>
@@ -59,6 +61,11 @@ export default {
       default: 'edb'
     },
 	},
+  computed: {
+    collectPath() {
+      return this.source === 'edb' ? '指标加工/我的指标/收藏指标' : '图库/我的图表/收藏图表'
+    }
+  },
 	watch: {
 		show(newval) {
 			if(newval) {
@@ -151,6 +158,7 @@ export default {
     .add-cont {
       color: #0052D9;
       cursor: pointer;
+      margin-bottom: 10px;
     }
   }
   .dia-bot {