Commit c239db09 authored by youjie's avatar youjie

直客销售

parent a3808913
...@@ -2074,7 +2074,8 @@ ...@@ -2074,7 +2074,8 @@
let createBy = 0 let createBy = 0
// #ifdef MP-DI // #ifdef MP-DI
createBy = this.createBy>0?this.createBy:this.customer.pid let employeeId = this.customer.salesBaseInfo&&this.customer.salesBaseInfo.employeeId?this.customer.salesBaseInfo.employeeId:0
createBy = this.createBy>0?this.createBy:employeeId
// #endif // #endif
// #ifdef MP-AG // #ifdef MP-AG
if(this.createBy>0||this.SaleId) createBy = this.createBy>0?this.createBy:this.SaleId if(this.createBy>0||this.SaleId) createBy = this.createBy>0?this.createBy:this.SaleId
......
...@@ -793,7 +793,9 @@ ...@@ -793,7 +793,9 @@
} else if (status == 3 && isCancel != 1) { } else if (status == 3 && isCancel != 1) {
this.orderStatus.code = 0; this.orderStatus.code = 0;
this.orderStatus.text = "候补中"; this.orderStatus.text = "候补中";
this.showPayBtn = true; // #ifdef MP-AG
this.showPayBtn = true;
// #endif
} else if (status == 2 && isCancel == 1) { } else if (status == 2 && isCancel == 1) {
this.orderStatus.code = -2; this.orderStatus.code = -2;
this.orderStatus.text = "审核中"; this.orderStatus.text = "审核中";
......
...@@ -726,7 +726,8 @@ ...@@ -726,7 +726,8 @@
// #endif // #endif
let createBy = 0 let createBy = 0
// #ifdef MP-DI // #ifdef MP-DI
createBy = this.createBy>0?this.createBy:this.customer.pid let employeeId = this.customer.salesBaseInfo&&this.customer.salesBaseInfo.employeeId?this.customer.salesBaseInfo.employeeId:0
createBy = this.createBy>0?this.createBy:employeeId
// #endif // #endif
// #ifdef MP-AG // #ifdef MP-AG
if(this.createBy>0||this.SaleId) createBy = this.createBy>0?this.createBy:this.SaleId if(this.createBy>0||this.SaleId) createBy = this.createBy>0?this.createBy:this.SaleId
......
...@@ -696,7 +696,12 @@ ...@@ -696,7 +696,12 @@
</view> </view>
<view style="display: flex; margin-top: -2px"> <view style="display: flex; margin-top: -2px">
<button class="jz_OrderReNow" @click="goPay()" :disabled="submit" :loading="submit"> <button class="jz_OrderReNow" @click="goPay()" :disabled="submit" :loading="submit">
立即预定 <!-- #ifdef MP-DI -->
立即支付
<!-- #endif -->
<!-- #ifdef MP-AG -->
立即预定
<!-- #endif -->
</button> </button>
</view> </view>
</view> </view>
......
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