Commit 38f4ba68 authored by zhengke's avatar zhengke

修改

parent 1c155722
...@@ -280,6 +280,7 @@ ...@@ -280,6 +280,7 @@
.jz_Content .price .money { .jz_Content .price .money {
font-size: 36rpx; font-size: 36rpx;
color:#FF3166;
} }
</style> </style>
<template> <template>
...@@ -395,8 +396,7 @@ ...@@ -395,8 +396,7 @@
</view> </view>
<view> <view>
<text></text> <text></text>
<text class="money">{{$utils.getretailer()==true? item.b2BPrice:item.b2CPrice}}</text> <text class="money">{{item.b2CPrice}}</text>
<text></text>
</view> </view>
</view> </view>
</view> </view>
......
...@@ -626,13 +626,6 @@ export default { ...@@ -626,13 +626,6 @@ export default {
var ContactMobile = this.contactMobile; var ContactMobile = this.contactMobile;
var CustomerType = 4; var CustomerType = 4;
var price = this.currentPriceInfo.b2CPrice; var price = this.currentPriceInfo.b2CPrice;
// if (this.$utils.getretailer()) {
// CustomerId = this.basedataObj.virtualB2BCustomerId;
// CustomerType = 4;
// price = this.currentPriceInfo.b2BMemberPrice;
// } else {
// price = this.currentPriceInfo.b2CMemberPrice;
// }
let msg = { let msg = {
OrderId: 0, OrderId: 0,
TCID: this.currentPriceInfo.tcid, TCID: this.currentPriceInfo.tcid,
...@@ -777,18 +770,12 @@ export default { ...@@ -777,18 +770,12 @@ 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()) {
CustomerId = this.basedataObj.virtualB2BCustomerId;
CustomerType = 1;
price = this.currentPriceInfo.b2BMemberPrice;
} else {
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