Commit 6473f29d authored by 黄奎's avatar 黄奎

1

parent 39dc8bda
...@@ -1886,7 +1886,8 @@ ...@@ -1886,7 +1886,8 @@
DiscountPrice = Number(this.priceObj.DiscountPrice); DiscountPrice = Number(this.priceObj.DiscountPrice);
} }
//成人价格=成人人数*(成交单价-早鸟优惠) //成人价格=成人人数*(成交单价-早鸟优惠)
let chengren = Number(this.addMsg.ManNum) * (Number(this.addMsg.Unit_Price) - DiscountPrice); let chengren = (Number(this.addMsg.ManNum) * (Number(this.addMsg.Unit_Price) - DiscountPrice)).toFixed(2);
console.log("cr",chengren);
//儿童价格=儿童人数*(单价-早鸟优惠+儿童附加费) //儿童价格=儿童人数*(单价-早鸟优惠+儿童附加费)
let ertong = Number(this.addMsg.ChirdNum) * (Number(this.addMsg.Unit_Price) - DiscountPrice + Number(this let ertong = Number(this.addMsg.ChirdNum) * (Number(this.addMsg.Unit_Price) - DiscountPrice + Number(this
......
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