Commit a54f50cf authored by 黄奎's avatar 黄奎

页面修改

parent af9420dc
This diff is collapsed.
...@@ -161,9 +161,7 @@ export default defineComponent({ ...@@ -161,9 +161,7 @@ export default defineComponent({
x.typeInfo = data.status.find(y => y.StatusId == x.orderState) ?? data.status[1] x.typeInfo = data.status.find(y => y.StatusId == x.orderState) ?? data.status[1]
}) })
data.orders = r.data.data.pageData data.orders = r.data.data.pageData
console.log(r)
data.pages.pageCount = r.data.data.pageCount data.pages.pageCount = r.data.data.pageCount
// methods.GetWaitDealOrderPageList()
} else { } else {
message.errorMsg(r.data.message) message.errorMsg(r.data.message)
} }
......
This diff is collapsed.
...@@ -277,7 +277,7 @@ ...@@ -277,7 +277,7 @@
</div> </div>
</div> </div>
<div v-if="price.visaPrice > 0 || price.otherPrice > 0"> <div v-if="price.visaPrice > 0 || price.otherPrice > 0">
<hr <!-- <hr
style="border: none; border-top: 1px dashed #eee !important" style="border: none; border-top: 1px dashed #eee !important"
class="bg-transparent q-mb-sm" class="bg-transparent q-mb-sm"
/> />
...@@ -297,7 +297,7 @@ ...@@ -297,7 +297,7 @@
) )
}} }}
</div> </div>
</div> </div> -->
<div class="row q-mb-sm" v-if="price.otherPrice > 0"> <div class="row q-mb-sm" v-if="price.otherPrice > 0">
<div class="col"> <div class="col">
{{ $t("v103.scheduledTripDetails.miscellaneous") }} x {{ $t("v103.scheduledTripDetails.miscellaneous") }} x
...@@ -322,7 +322,8 @@ ...@@ -322,7 +322,8 @@
{{ $t("v103.scheduledTripDetails.surcharge") }} x {{ chosenObj.etCount }} {{ $t("v103.scheduledTripDetails.surcharge") }} x {{ chosenObj.etCount }}
</div> </div>
<div> <div>
{{ domain == `id.oytour` ? "IDR" : "CNY" }} {{ price.babyChargePrice }} {{ domain == `id.oytour` ? "IDR" : "CNY" }}
{{ price.babyChargePrice * chosenObj.etCount }}
</div> </div>
</div> </div>
<div class="row q-mb-sm" v-if="chosenObj.df > 0"> <div class="row q-mb-sm" v-if="chosenObj.df > 0">
...@@ -550,15 +551,19 @@ export default defineComponent({ ...@@ -550,15 +551,19 @@ export default defineComponent({
data.price.discountPrice = data.price.discountPrice data.price.discountPrice = data.price.discountPrice
? data.price.discountPrice ? data.price.discountPrice
: 0; : 0;
//成人价格 //成人价格=成人人数*(成交单价-早鸟优惠)
let crMoney = data.price.originalB2BPrice * data.chosenObj.crCount; let crMoney = data.price.originalB2BPrice * data.chosenObj.crCount;
//儿童不占床价格 //儿童不占床价格
let etbzcMoney = let etbzcMoney =
(data.price.originalB2BPrice - data.price.childNoNeedPrice) * (data.price.originalB2BPrice -
data.price.childNoNeedPrice +
data.price.babyChargePrice) *
data.chosenObj.etbzcCount; data.chosenObj.etbzcCount;
//儿童占床价格 //儿童占床价格
let etzcMoney = let etzcMoney =
(data.price.originalB2BPrice + data.price.childNeedPrice) * (data.price.originalB2BPrice +
data.price.childNeedPrice +
data.price.babyChargePrice) *
data.chosenObj.etzcCount; data.chosenObj.etzcCount;
//婴儿价格 //婴儿价格
let babyMoney = data.price.babyPrice * data.chosenObj.yeCount; let babyMoney = data.price.babyPrice * data.chosenObj.yeCount;
...@@ -569,8 +574,9 @@ export default defineComponent({ ...@@ -569,8 +574,9 @@ export default defineComponent({
data.chosenObj.etbzcCount + data.chosenObj.etbzcCount +
data.chosenObj.etzcCount + data.chosenObj.etzcCount +
data.chosenObj.yeCount; data.chosenObj.yeCount;
//签证费 //签证费(团费包含了签证费)
let visaMoney = data.price.visaPrice * sumCount; let visaMoney = 0;
//visaMoney=data.price.visaPrice * sumCount;
let safeMoney = data.price.safeMoney * sumCount; let safeMoney = data.price.safeMoney * sumCount;
let otherMoney = data.price.otherPrice * sumCount; let otherMoney = data.price.otherPrice * sumCount;
// console.log("totalPersion", sumCount); // console.log("totalPersion", sumCount);
...@@ -678,7 +684,7 @@ export default defineComponent({ ...@@ -678,7 +684,7 @@ export default defineComponent({
PreferPrice: data.sumPrice, //实付价格 PreferPrice: data.sumPrice, //实付价格
DiscountMoney: 0, //优惠价格 DiscountMoney: 0, //优惠价格
CouponAllotIds: "", //优惠券id CouponAllotIds: "", //优惠券id
YSeatNum: y, //盈收 YSeatNum: y, //
ESeatNum: f, ESeatNum: f,
FSeatNum: c, FSeatNum: c,
Commission: ( Commission: (
......
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