Browse Source

同意处理价格

yuxingxing 2 years ago
parent
commit
d03736ace7

+ 1 - 1
components/orderGoods/index_mall.vue

@@ -35,7 +35,7 @@
 						</view>
 						<view class='money font-color pic' v-if="item.salePrice">
 							<text :class="{gray:!item.isSale}">
-								{{$t(`¥`)}}{{item.salePrice}}
+								{{$t(`¥`)}}{{item.salePrice - 0}}
 							</text>
 						</view>
 					</view>

+ 1 - 1
components/productWindow/index.vue

@@ -12,7 +12,7 @@
 					</view>
 					<view class="money font-color">
 						<view class="acea-row row-middle">
-							{{ $t(`¥`) }}<text class="num">{{ attr.productSelect.salePrice }}</text>
+							{{ $t(`¥`) }}<text class="num">{{ attr.productSelect.salePrice - 0}}</text>
 							<text class='vip-money'
 								v-if="is_vip > 0 && attr.productSelect.vip_price">{{ $t(`¥`) }}{{ attr.productSelect.vip_price }}</text>
 							<view class="vipImg" v-if="is_vip > 0 && attr.productSelect.vip_price">

+ 1 - 1
pages/goods/goods_list_mall/index.vue

@@ -24,7 +24,7 @@
 						</view>
 						<!-- <view class='name line1'>{{ item.goodsName }}</view> -->
 						<view class='money font-color' :class='is_switch == true ? "" : "on"'>{{ $t(`¥`) }}<text
-								class='num'>{{ item.salePrice }}</text></view>
+								class='num'>{{ item.salePrice - 0 }}</text></view>
 						<view class='vip acea-row row-between-wrapper' :class='is_switch == true ? "" : "on"'>
 							<!-- <view class='vip-money' v-if="item.salePrice && item.salePrice > 0">
 								{{ $t(`¥`) }}{{ item.salePrice }}

+ 1 - 1
pages/goods/order_list/index.vue

@@ -69,7 +69,7 @@
 								<view class="money">
 									<view v-if="items.goodsPrice">{{ $t(`¥`) }}{{ items.goodsPrice }}
 									</view>
-									<view v-else>{{ $t(`¥`) }}{{ items.salePrice }}</view>
+									<view v-else>{{ $t(`¥`) }}{{ items.salePrice - 0}}</view>
 									<view>x{{ items.goodsNum }}</view>
 									<!-- <view v-if="items.refund_num && item.payFlag != -2" class="return">
 										{{ items.refund_num }}{{$t(`件退款中`)}}

+ 1 - 1
pages/goods_details/index.vue

@@ -53,7 +53,7 @@
 							<view class="share acea-row row-between row-bottom">
 								<view class="money font-color skeleton-rect">
 									{{ $t(`¥`) }}
-									<text class="num" v-text="storeInfo.salePrice || 0"></text>
+									<text class="num" v-text="storeInfo.salePrice - 0 || 0"></text>
 									<text v-if="storeInfo.spec_type">{{ $t(`起`) }}</text>
 									<text class="vip-money" v-if="
 										storeInfo.vip_price &&

+ 1 - 1
pages/index/diy/components/goodListMall.vue

@@ -26,7 +26,7 @@
 					<view class="tags" v-if="opriceShow">赠送{{ item.obtainIntegral }}红积分</view>
 					<view class="price" :style="{ color: fontColor }">
 						<view v-if="priceShow">
-							<text>{{ $t(`¥`) }}</text>{{ item.salePrice }}
+							<text>{{ $t(`¥`) }}</text>{{ item.salePrice - 0 }}
 						</view>
 						<view class="txt" :style="'border:1px solid ' + labelColor + ';color:' + labelColor"
 							:class="priceShow ? '' : 'on'" v-if="item.isNew">{{ $t(`新`) }}</view>

+ 1 - 1
pages/index/diy/index_mall.vue

@@ -75,7 +75,7 @@
 										iconStyle="font-size: 16px; color:red;min-height: 30px;" :lines="2" bold block
 										size="12" :text="item.goodsName"></u-text>
 									<view class="tags">赠送{{ item.obtainIntegral }}红积分</view>
-									<view class="price">¥{{ item.salePrice }}</view>
+									<view class="price">¥{{ item.salePrice - 0 }}</view>
 								</view>
 							</view>
 						</scroll-view>