zs 2 år sedan
förälder
incheckning
048ff9fc93

+ 1 - 1
pagesMy/logistics/index.vue

@@ -22,7 +22,7 @@
 							</view>
 							<view class="other_1 textOver">
 								<text>金额:</text>
-								<text>¥{{info.type=='0'?goods.sell_money:goods.group_config.money}}</text>
+								<text>¥{{info.type=='0'?goods.price||goods.sell_money:goods.group_config.money}}</text>
 							</view>
 							<view class="other_1 textOver">
 								<text>数量:</text>

+ 1 - 1
pagesMy/order/afterInfo.vue

@@ -15,7 +15,7 @@
 				</view>
 				<view class="goodsother">
 					<view v-if="info.order_detail.type=='0'" class="price">
-						¥{{info.goods.price}}
+						¥{{info.goods.price||info.goods.sell_money}}
 					</view>
 					<view v-else class="price">
 						¥{{info.goods.group_config.money}}

+ 2 - 1
pagesMy/order/appraise.vue

@@ -22,7 +22,8 @@
 							</view>
 							<view class="other_1">
 								<text>金额:</text>
-								<text class="money">¥{{info.type=='0'?item.sell_money:item.group_config.money}}</text>
+								<text
+									class="money">¥{{info.type=='0'?item.price||item.sell_money:item.group_config.money}}</text>
 							</view>
 							<view class="other_1">
 								<text>数量:</text>

+ 6 - 2
pagesMy/order/index.vue

@@ -42,7 +42,7 @@
 														</view>
 														<view class="market_3">
 															<view v-if="item.type=='0'" class="price">
-																¥{{tags.price}}
+																¥{{tags.price||tags.sell_money}}
 															</view>
 															<view v-else class="price">
 																¥{{tags.group_config.money}}
@@ -85,7 +85,7 @@
 												</view>
 												<view class="goods_3">
 													<view v-if="item.type=='0'" class="price">
-														¥{{tag.price}}
+														¥{{tag.price||tag.sell_money}}
 													</view>
 													<view v-else class="price">
 														¥{{tag.group_config.money}}
@@ -646,6 +646,10 @@
 										.market_3 {
 											width: 15vw;
 											text-align: right;
+
+											.price {
+												color: #ff0000;
+											}
 										}
 									}
 								}

+ 2 - 2
pagesMy/order/info.vue

@@ -47,7 +47,7 @@
 												</view>
 												<view class="goodsother">
 													<view v-if="info.type=='0'" class="price">
-														¥{{tag.price}}
+														¥{{tag.price||tag.sell_money}}
 													</view>
 													<view v-else class="price">
 														¥{{tag.group_config.money}}
@@ -104,7 +104,7 @@
 										</view>
 										<view class="goodsother">
 											<view v-if="info.type=='0'" class="price">
-												¥{{item.price}}
+												¥{{item.price||item.sell_money}}
 											</view>
 											<view v-else class="price">
 												¥{{item.group_config.money}}

+ 2 - 1
pagesMy/order/service.vue

@@ -22,7 +22,8 @@
 							</view>
 							<view class="other_1">
 								<text>金额:</text>
-								<text class="money">¥{{info.type=='0'?item.price:item.group_config.money}}</text>
+								<text
+									class="money">¥{{info.type=='0'?item.price||item.sell_money:item.group_config.money}}</text>
 							</view>
 							<view class="other_1">
 								<text>数量:</text>