Commit 37d017bf authored by youjie's avatar youjie

no message

parent bf698c1a
...@@ -690,10 +690,7 @@ ...@@ -690,10 +690,7 @@
<span class="fz12 c9e">订单总金额</span> <span class="fz12 c9e">订单总金额</span>
<div class="ml"> <div class="ml">
<span class="fz15 fbold">{{ item.Money.toFixed(2) }}</span> <span class="fz15 fbold">{{ item.Money.toFixed(2) }}</span>
<span class="fz12 ml"> <span class="fz12 ml">{{ item.CurrencyName }}</span>
<!-- ¥ -->
</span>
<!-- <span class="fz15">{{ item.CurrencyName }}</span> -->
</div> </div>
</div> </div>
<div <div
...@@ -702,11 +699,8 @@ ...@@ -702,11 +699,8 @@
> >
<span class="fz12 c9e">到店自付</span> <span class="fz12 c9e">到店自付</span>
<div class="ml"> <div class="ml">
<span class="fz10 ml">
<!-- ¥ -->
</span>
<span class="fz14">{{ item.SelfPayMoney.toFixed(2) }}</span> <span class="fz14">{{ item.SelfPayMoney.toFixed(2) }}</span>
<!-- <span class="fz14">{{ item.CurrencyName }}</span> --> <span class="fz12 ml">{{ item.CurrencyName }}</span>
</div> </div>
</div> </div>
<div <div
...@@ -715,11 +709,8 @@ ...@@ -715,11 +709,8 @@
> >
<span class="fz12 c9e">出发前付款</span> <span class="fz12 c9e">出发前付款</span>
<div class="ml"> <div class="ml">
<span class="fz10 ml">
<!-- ¥ -->
</span>
<span class="fz14">{{ item.BeforeMoney.toFixed(2) }}</span> <span class="fz14">{{ item.BeforeMoney.toFixed(2) }}</span>
<!-- <span class="fz14">{{ item.CurrencyName }}</span> --> <span class="fz12 ml">{{ item.CurrencyName }}</span>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -105,8 +105,8 @@ ...@@ -105,8 +105,8 @@
<div> <div>
<span class="coloref1416c fz12">订单总金额:</span> <span class="coloref1416c fz12">订单总金额:</span>
<span class="coloref1416c fbold"> <span class="coloref1416c fbold">
<span class="fz13"><!-- ¥ --></span>
<span class="fz18">{{parameters.Money}}</span> <span class="fz18">{{parameters.Money}}</span>
<span class="fz13"><!-- ¥ -->{{cars[0].CurrencyName}}</span>
</span> </span>
</div> </div>
<div> <div>
......
...@@ -113,7 +113,8 @@ ...@@ -113,7 +113,8 @@
TaxesPrice:0, TaxesPrice:0,
PriceInTangTax:0, PriceInTangTax:0,
PriceIsBreakfast:0, PriceIsBreakfast:0,
PriceIsDinner:0 PriceIsDinner:0,
CurrencyName: ''
}, },
total: 0, total: 0,
joinHouse: { joinHouse: {
...@@ -147,7 +148,6 @@ ...@@ -147,7 +148,6 @@
}, },
hotelInfor: { hotelInfor: {
handler: function (val, oldVal) { handler: function (val, oldVal) {
if(this.hotelInfor&&this.hotelInfor.RemainingInventory){ if(this.hotelInfor&&this.hotelInfor.RemainingInventory){
this.onlyNum = this.hotelInfor.RemainingInventory this.onlyNum = this.hotelInfor.RemainingInventory
} }
...@@ -214,6 +214,7 @@ ...@@ -214,6 +214,7 @@
}else{ }else{
exists = { exists = {
Date:temp.Date, Date:temp.Date,
CurrencyName: this.parameters.CurrencyName,
Hotels:[] Hotels:[]
} }
this.cars.push(exists) this.cars.push(exists)
...@@ -250,6 +251,7 @@ ...@@ -250,6 +251,7 @@
this.parameters.PriceInTangTax= tempPrice.PriceInTangTax this.parameters.PriceInTangTax= tempPrice.PriceInTangTax
this.parameters.PriceIsBreakfast = tempPrice.PriceIsBreakfast this.parameters.PriceIsBreakfast = tempPrice.PriceIsBreakfast
this.parameters.PriceIsDinner = tempPrice.PriceIsDinner this.parameters.PriceIsDinner = tempPrice.PriceIsDinner
this.parameters.CurrencyName = tempPrice.CurrencyName
this.setDateRange() this.setDateRange()
roomTyps.forEach((x, i) => { roomTyps.forEach((x, i) => {
...@@ -269,7 +271,7 @@ ...@@ -269,7 +271,7 @@
Destription: '', Destription: '',
TaxesPrice: tempPrice.TaxesPrice, TaxesPrice: tempPrice.TaxesPrice,
PriceInTangTax: tempPrice.PriceInTangTax, PriceInTangTax: tempPrice.PriceInTangTax,
HotelName: this.HotelRow.HotelName HotelName: this.HotelRow.HotelName,
} }
this.parameters.DetailList.push(dataMsg) this.parameters.DetailList.push(dataMsg)
} }
......
...@@ -552,7 +552,7 @@ ...@@ -552,7 +552,7 @@
<div class="right-Money"> <div class="right-Money">
<div> <div>
<span>订单总金额:</span> <span>订单总金额:</span>
<b>{{ msg.Money.toFixed(2) }}</b> <b>{{ msg.Money.toFixed(2) }} <span class="fz12">{{detailsObj.CurrencyName}}</span></b>
</div> </div>
</div> </div>
<div class="right-Submit"> <div class="right-Submit">
......
...@@ -414,7 +414,8 @@ ...@@ -414,7 +414,8 @@
<div class="right-Money"> <div class="right-Money">
<div> <div>
<span>订单总金额:</span> <span>订单总金额:</span>
<b>{{ msg.Money.toFixed(2) }}</b> <b>{{ msg.Money.toFixed(2) }} <span class="fz12">{{types[0].CurrencyName}}</span></b>
</div> </div>
</div> </div>
<div class="right-Submit"> <div class="right-Submit">
......
...@@ -676,9 +676,7 @@ ...@@ -676,9 +676,7 @@
<span class="fz12 c9e">订单总金额</span> <span class="fz12 c9e">订单总金额</span>
<div class="ml"> <div class="ml">
<span class="fz15 fbold">{{ item.Money.toFixed(2) }}</span> <span class="fz15 fbold">{{ item.Money.toFixed(2) }}</span>
<span class="fz12 ml"> <span class="fz12 ml">{{ item.CurrencyName }}</span>
<!-- ¥ -->
</span>
</div> </div>
</div> </div>
</div> </div>
......
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