فهرست منبع

Merge branch 'dev/v1.1.15_yf' of jianyu/web into feature/v1.1.15

yangfeng 3 روز پیش
والد
کامیت
193dd97af5

+ 3 - 1
apps/bigmember_pc/src/components/zhima/report-guide-banner.vue

@@ -133,7 +133,9 @@ const discountText = computed(() => {
     if (packageType < 0 && expiredDay) {
       return `<div class="highlight-text">您的权益已过期${expiredDay}天,开通权益享特惠</div>`
     } else {
-      return `<div class="highlight-text">${discountMsg.value}</div>`
+      return discountMsg.value
+        ? `<div class="highlight-text">${discountMsg.value}</div>`
+        : '<div class="highlight-text">开通招投标综合分析权益,看报告更优惠!</div>'
     }
   }
 })

+ 1 - 1
apps/mobile/src/views/article/components/ActionDownloadReport.vue

@@ -36,7 +36,7 @@
             size="20"
           ></AppIcon>
           <template #text>
-            <span :class="{ 'highlight-text': showPopover }">下载报告</span>
+            <span :class="{ 'highlight-text': showPopover }">深度分析</span>
           </template>
         </TabActionItem>
       </template>

+ 8 - 1
apps/mobile/src/views/article/ui/ReportDownloadCard.vue

@@ -94,7 +94,9 @@ export default {
         if (packageType < 0 && expiredDay) {
           return `<div class="gray-text">您的权益已过期${expiredDay}天,<br>开通权益享特惠</div>`
         } else {
-          return `<span class="highlight-text report-buy-btn">${discountMsg}</span>`
+          return discountMsg
+            ? `<span class="highlight-text report-buy-btn">${discountMsg}</span>`
+            : '<span class="blue-text">开通招投标综合分析权益,<br>看报告更优惠!</span>'
         }
       }
     },
@@ -232,4 +234,9 @@ export default {
   font-size: 11px;
   line-height: 16px;
 }
+.blue-text {
+  font-size: 11px;
+  line-height: 16px;
+  color: $color_main;
+}
 </style>