shish пре 1 година
родитељ
комит
2c0f4c228b
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      mallApp/src/pages/item/detail.vue

+ 2 - 2
mallApp/src/pages/item/detail.vue

@@ -8,7 +8,7 @@
       <view class="tui-pro-titbox">
         <view class="tui-pro-title app-size-32">
           <text v-if="data.presell == 1">【预售】</text>
-          <text v-if="Number(data.discountPrice) > 0">【特价】</text>
+          <text v-if="Number(data.discountPrice) > 0">【今日推荐】</text>
           {{ data.name }}
         </view>
         <button open-type="share" class="tui-share-btn tui-share-position" style="background-color:#EDEDED;">
@@ -164,7 +164,7 @@ export default {
           let skPrice = this.data.skPrice ? parseFloat(this.data.skPrice) : 0
           let title = this.data.name+' ¥'+skPrice
           if(this.data.discountPrice && Number(this.data.discountPrice) > 0){
-            title = '【特价】'+title
+            title = '【今日推荐】'+title
           }
           let shareParams = {
             title: title,