|
@@ -139,7 +139,15 @@
|
|
规格:{{ pros.productUnit ? pros.productUnit : '' }}
|
|
规格:{{ pros.productUnit ? pros.productUnit : '' }}
|
|
</view>
|
|
</view>
|
|
<view class="productprice">
|
|
<view class="productprice">
|
|
- <view class="price tui-skeleton-fillet" :class="pros.svipPriceFlag == 1 ? 'none' : ''">
|
|
|
|
|
|
+ <view
|
|
|
|
+ class="price tui-skeleton-fillet"
|
|
|
|
+ :class="
|
|
|
|
+ pros.svipPriceFlag == 1 ||
|
|
|
|
+ PromotionsFormat(pros.productPromotion)
|
|
|
|
+ ? 'none'
|
|
|
|
+ : ''
|
|
|
|
+ "
|
|
|
|
+ >
|
|
<text>¥{{ pros.price | NumFormat }}</text>
|
|
<text>¥{{ pros.price | NumFormat }}</text>
|
|
</view>
|
|
</view>
|
|
<view class="count tui-skeleton-fillet">
|
|
<view class="count tui-skeleton-fillet">
|
|
@@ -154,7 +162,12 @@
|
|
@click.stop="clickPopupShow(pros.productPromotion)"
|
|
@click.stop="clickPopupShow(pros.productPromotion)"
|
|
>
|
|
>
|
|
{{ pros.productPromotion.name }}
|
|
{{ pros.productPromotion.name }}
|
|
- <text v-if="pros.productPromotion != null && pros.productPromotion.type != 3">
|
|
|
|
|
|
+ <text
|
|
|
|
+ v-if="
|
|
|
|
+ pros.productPromotion != null &&
|
|
|
|
+ pros.productPromotion.type != 3
|
|
|
|
+ "
|
|
|
|
+ >
|
|
:¥{{
|
|
:¥{{
|
|
pros.productPromotion == null
|
|
pros.productPromotion == null
|
|
? '0.00'
|
|
? '0.00'
|
|
@@ -510,7 +523,7 @@ export default {
|
|
switch (data.type) {
|
|
switch (data.type) {
|
|
case 'query':
|
|
case 'query':
|
|
this.isModalLayer = true
|
|
this.isModalLayer = true
|
|
- this.$api.navigateTo('/pages/user/order/order-logistics?orderId='+ data.orderId)
|
|
|
|
|
|
+ this.$api.navigateTo('/pages/user/order/order-logistics?orderId=' + data.orderId)
|
|
break
|
|
break
|
|
case 'delete':
|
|
case 'delete':
|
|
this.handOrderDetele(data.orderId)
|
|
this.handOrderDetele(data.orderId)
|
|
@@ -1023,7 +1036,7 @@ page {
|
|
color: #ff2a2a;
|
|
color: #ff2a2a;
|
|
float: left;
|
|
float: left;
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
- &.none{
|
|
|
|
|
|
+ &.none {
|
|
text-decoration: line-through;
|
|
text-decoration: line-through;
|
|
color: #999999;
|
|
color: #999999;
|
|
}
|
|
}
|