|
@@ -31,7 +31,7 @@
|
|
|
<view class="wrap-main-item">
|
|
|
<view
|
|
|
class="p-price tui-skeleton-fillet"
|
|
|
- :class="(PromotionsFormat(product.promotions) || product.svipProductFlag == 1) ? 'none' : ''"
|
|
|
+ :class="PromotionsFormat(product.promotions) ? 'none' : ''"
|
|
|
>
|
|
|
<text class="txt sm">¥</text>
|
|
|
<text class="txt big">{{
|
|
@@ -73,7 +73,7 @@
|
|
|
<view
|
|
|
v-else
|
|
|
class="p-price tui-skeleton-fillet"
|
|
|
- :class="( PromotionsFormat(product.promotions) || product.svipProductFlag == 1 )? 'none' : ''"
|
|
|
+ :class="PromotionsFormat(product.promotions)? 'none' : ''"
|
|
|
>
|
|
|
<text class="txt sm">¥</text>
|
|
|
<text class="txt big">{{
|
|
@@ -105,6 +105,9 @@
|
|
|
</view>
|
|
|
</template>
|
|
|
</view>
|
|
|
+ <view class="p-right-price">
|
|
|
+ 市场价:<text class="none">¥{{ product.normalPrice | NumFormat }}</text>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</template>
|
|
|
<!-- 供应商 -->
|
|
@@ -115,7 +118,7 @@
|
|
|
<view
|
|
|
v-else
|
|
|
class="p-price tui-skeleton-fillet"
|
|
|
- :class="(PromotionsFormat(product.promotions) || product.svipProductFlag == 1)? 'none' : ''"
|
|
|
+ :class="PromotionsFormat(product.promotions) ? 'none' : ''"
|
|
|
>
|
|
|
<text class="txt sm">¥</text>
|
|
|
<text class="txt big">{{
|
|
@@ -178,7 +181,7 @@
|
|
|
<view class="wrap-main-item">
|
|
|
<view
|
|
|
class="p-price tui-skeleton-fillet"
|
|
|
- :class="(PromotionsFormat(product.promotions) || product.svipProductFlag == 1 )? 'none' : ''"
|
|
|
+ :class="PromotionsFormat(product.promotions) ? 'none' : ''"
|
|
|
>
|
|
|
<text class="txt sm">¥</text>
|
|
|
<text class="txt big">{{
|
|
@@ -210,6 +213,9 @@
|
|
|
</view>
|
|
|
</template>
|
|
|
</view>
|
|
|
+ <view class="p-right-price">
|
|
|
+ 市场价:<text class="none">¥{{ product.normalPrice | NumFormat}}</text>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</template>
|
|
|
</template>
|