Commit 1c155722 authored by 罗超's avatar 罗超

Merge branch 'master' of http://gitlab.oytour.com/zk123/jz_travel into master

parents b9408f48 b671cc1d
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
<view> <view>
<span class="price"> <span class="price">
<span style="font-size: 28rpx;font-weight: 500;margin-right: 2rpx;"></span> <span style="font-size: 28rpx;font-weight: 500;margin-right: 2rpx;"></span>
{{ goodsInfo.showGoodsPrice ? getPrice(item.price) : '' }} {{ goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : '' }}
</span> </span>
</view> </view>
</view> </view>
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
</view> --> </view> -->
<view class="good-price-info"> <view class="good-price-info">
<view class="price"> <view class="price">
{{ goodsInfo.showGoodsPrice ? getPrice(item.price) : '' }} {{ goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : '' }}
<!-- <span style='text-decoration: line-through;margin-left: 10px;font-size: 10px;color: gray;font-family: aa;'>原价:{{goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : ''}}</span> --> <!-- <span style='text-decoration: line-through;margin-left: 10px;font-size: 10px;color: gray;font-family: aa;'>原价:{{goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : ''}}</span> -->
</view> </view>
<view class="buy" v-if="goodsInfo.showBuyBtn" @click.stop="showSkuHandler(item)"> <view class="buy" v-if="goodsInfo.showBuyBtn" @click.stop="showSkuHandler(item)">
......
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
<div class="good-price-info"> <div class="good-price-info">
<view class="price" :style="{ color: mainColor }"> <view class="price" :style="{ color: mainColor }">
<span>{{ <span>{{
goodsInfo.showGoodsPrice ? getPrice(item.price) : "" goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : ""
}}</span> }}</span>
<span <span
style=" style="
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
}}</view> }}</view>
<view class="good-price-info"> <view class="good-price-info">
<view class="price" :style="{ color: mainColor }">{{ <view class="price" :style="{ color: mainColor }">{{
goodsInfo.showGoodsPrice ? getPrice(item.price) : "" goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : ""
}}</view> }}</view>
<view <view
class="buy" class="buy"
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
item.thirdname item.thirdname
}}</view> }}</view>
<span> <span>
{{ goodsInfo.showGoodsPrice ? getPrice(item.price) : "" }} {{ goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : "" }}
</span> </span>
<!-- <span style='text-decoration: line-through;font-size: 10px;color: gray;font-family: aa;'>原价:{{goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : ''}}</span> --> <!-- <span style='text-decoration: line-through;font-size: 10px;color: gray;font-family: aa;'>原价:{{goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : ''}}</span> -->
</view> </view>
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
}}</view> }}</view>
<view class="good-price-info"> <view class="good-price-info">
<view class="price" :style="{ color: mainColor }" <view class="price" :style="{ color: mainColor }"
>{{ goodsInfo.showGoodsPrice ? getPrice(item.price) : "" }} >{{ goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : "" }}
<!-- <span style='text-decoration: line-through;margin-left: 10px;font-size: 10px;color: gray;font-family: aa;'>原价:{{goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : ''}}</span> --> <!-- <span style='text-decoration: line-through;margin-left: 10px;font-size: 10px;color: gray;font-family: aa;'>原价:{{goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : ''}}</span> -->
</view> </view>
<view <view
......
...@@ -112,7 +112,7 @@ ...@@ -112,7 +112,7 @@
class="price" class="price"
:style="{ color: mainColor }" :style="{ color: mainColor }"
v-if="item.price > 0 && goodsInfo.showGoodsPrice" v-if="item.price > 0 && goodsInfo.showGoodsPrice"
>{{ goodsInfo.showGoodsPrice ? getPrice(item.price) : "" }} >{{ goodsInfo.showGoodsPrice ? getPrice(item.OriginalPrice) : "" }}
<span <span
style=" style="
text-decoration: line-through; text-decoration: line-through;
......
...@@ -621,18 +621,18 @@ export default { ...@@ -621,18 +621,18 @@ export default {
this.submit = true; this.submit = true;
this.userInfo = uni.getStorageSync("mall_UserInfo"); this.userInfo = uni.getStorageSync("mall_UserInfo");
this.basedataObj = uni.getStorageSync("basedata").mall; this.basedataObj = uni.getStorageSync("basedata").mall;
var CustomerId = 0; var CustomerId = this.basedataObj.virtualB2BCustomerId;
var ContactName = this.contactName; var ContactName = this.contactName;
var ContactMobile = this.contactMobile; var ContactMobile = this.contactMobile;
var CustomerType = 3; var CustomerType = 4;
var price = 0; var price = this.currentPriceInfo.b2CPrice;
if (this.$utils.getretailer()) { // if (this.$utils.getretailer()) {
CustomerId = this.basedataObj.virtualB2BCustomerId; // CustomerId = this.basedataObj.virtualB2BCustomerId;
CustomerType = 1; // CustomerType = 4;
price = this.currentPriceInfo.b2BMemberPrice; // price = this.currentPriceInfo.b2BMemberPrice;
} else { // } else {
price = this.currentPriceInfo.b2CMemberPrice; // price = this.currentPriceInfo.b2CMemberPrice;
} // }
let msg = { let msg = {
OrderId: 0, OrderId: 0,
TCID: this.currentPriceInfo.tcid, TCID: this.currentPriceInfo.tcid,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment