Commit d85b57f4 authored by youjie's avatar youjie

签证优化

parent 9329f282
...@@ -518,9 +518,12 @@ ...@@ -518,9 +518,12 @@
}) })
let PriceNum = 0 let PriceNum = 0
var CreateBy = this.createBy.CreateBy var CreateBy = this.createBy.CreateBy
// #ifdef MP-DI
if(this.customer.salesBaseInfo&&this.customer.salesBaseInfo.employeeId){ if(this.customer.salesBaseInfo&&this.customer.salesBaseInfo.employeeId){
CreateBy = this.customer.salesBaseInfo.employeeId CreateBy = this.customer.salesBaseInfo.employeeId
} }
// #endif
var DirectCustomerId = 0 var DirectCustomerId = 0
var CustomerId = 0 var CustomerId = 0
//#ifdef MP-DI //#ifdef MP-DI
......
...@@ -1194,9 +1194,9 @@ ...@@ -1194,9 +1194,9 @@
// #ifdef MP-AG // #ifdef MP-AG
price = this.dataList.VisaPrice; price = this.dataList.VisaPrice;
// #endif // #endif
let money = price * this.orderMsg.AdultPeopleNum; let money = (price*100) * this.orderMsg.AdultPeopleNum;
this.price = money; this.price = money/100;
}, },
validate(){ validate(){
let email = /^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.[a-zA-Z0-9]{2,6}$/ let email = /^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.[a-zA-Z0-9]{2,6}$/
...@@ -1298,9 +1298,12 @@ ...@@ -1298,9 +1298,12 @@
Remark: this.orderMsg.Remark, Remark: this.orderMsg.Remark,
CouponAllotIds: CouponAllotIds, CouponAllotIds: CouponAllotIds,
}; };
// #ifdef MP-DI
if(this.customer.salesBaseInfo&&this.customer.salesBaseInfo.employeeId){ if(this.customer.salesBaseInfo&&this.customer.salesBaseInfo.employeeId){
msg.CreateBy = this.customer.salesBaseInfo.employeeId msg.CreateBy = this.customer.salesBaseInfo.employeeId
} }
// #endif
this.apipost( this.apipost(
"b2b_get_SetB2BVisaOrder", "b2b_get_SetB2BVisaOrder",
msg, msg,
......
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