Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bigwood
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
bigwood
Commits
a54f50cf
Commit
a54f50cf
authored
Oct 18, 2024
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
af9420dc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1267 additions
and
926 deletions
+1267
-926
search.vue
src/components/searchdata/search.vue
+1025
-802
TripOrderList.vue
src/components/trip/order/TripOrderList.vue
+0
-2
orderPreview.vue
src/components/trip/orderPreview.vue
+227
-113
TripOrderPreview.vue
src/pages/scheduledTrip/TripOrderPreview.vue
+15
-9
No files found.
src/components/searchdata/search.vue
View file @
a54f50cf
This diff is collapsed.
Click to expand it.
src/components/trip/order/TripOrderList.vue
View file @
a54f50cf
...
...
@@ -161,9 +161,7 @@ export default defineComponent({
x
.
typeInfo
=
data
.
status
.
find
(
y
=>
y
.
StatusId
==
x
.
orderState
)
??
data
.
status
[
1
]
})
data
.
orders
=
r
.
data
.
data
.
pageData
console
.
log
(
r
)
data
.
pages
.
pageCount
=
r
.
data
.
data
.
pageCount
// methods.GetWaitDealOrderPageList()
}
else
{
message
.
errorMsg
(
r
.
data
.
message
)
}
...
...
src/components/trip/orderPreview.vue
View file @
a54f50cf
This diff is collapsed.
Click to expand it.
src/pages/scheduledTrip/TripOrderPreview.vue
View file @
a54f50cf
...
...
@@ -277,7 +277,7 @@
</div>
</div>
<div
v-if=
"price.visaPrice > 0 || price.otherPrice > 0"
>
<hr
<
!--
<
hr
style=
"border: none; border-top: 1px dashed #eee !important"
class=
"bg-transparent q-mb-sm"
/>
...
...
@@ -297,7 +297,7 @@
)
}}
</div>
</div>
</div>
-->
<div
class=
"row q-mb-sm"
v-if=
"price.otherPrice > 0"
>
<div
class=
"col"
>
{{
$t
(
"v103.scheduledTripDetails.miscellaneous"
)
}}
x
...
...
@@ -322,7 +322,8 @@
{{
$t
(
"v103.scheduledTripDetails.surcharge"
)
}}
x
{{
chosenObj
.
etCount
}}
</div>
<div>
{{
domain
==
`id.oytour`
?
"IDR"
:
"CNY"
}}
{{
price
.
babyChargePrice
}}
{{
domain
==
`id.oytour`
?
"IDR"
:
"CNY"
}}
{{
price
.
babyChargePrice
*
chosenObj
.
etCount
}}
</div>
</div>
<div
class=
"row q-mb-sm"
v-if=
"chosenObj.df > 0"
>
...
...
@@ -550,15 +551,19 @@ export default defineComponent({
data
.
price
.
discountPrice
=
data
.
price
.
discountPrice
?
data
.
price
.
discountPrice
:
0
;
//成人价格
//成人价格
=成人人数*(成交单价-早鸟优惠)
let
crMoney
=
data
.
price
.
originalB2BPrice
*
data
.
chosenObj
.
crCount
;
//儿童不占床价格
let
etbzcMoney
=
(
data
.
price
.
originalB2BPrice
-
data
.
price
.
childNoNeedPrice
)
*
(
data
.
price
.
originalB2BPrice
-
data
.
price
.
childNoNeedPrice
+
data
.
price
.
babyChargePrice
)
*
data
.
chosenObj
.
etbzcCount
;
//儿童占床价格
let
etzcMoney
=
(
data
.
price
.
originalB2BPrice
+
data
.
price
.
childNeedPrice
)
*
(
data
.
price
.
originalB2BPrice
+
data
.
price
.
childNeedPrice
+
data
.
price
.
babyChargePrice
)
*
data
.
chosenObj
.
etzcCount
;
//婴儿价格
let
babyMoney
=
data
.
price
.
babyPrice
*
data
.
chosenObj
.
yeCount
;
...
...
@@ -569,8 +574,9 @@ export default defineComponent({
data
.
chosenObj
.
etbzcCount
+
data
.
chosenObj
.
etzcCount
+
data
.
chosenObj
.
yeCount
;
//签证费
let
visaMoney
=
data
.
price
.
visaPrice
*
sumCount
;
//签证费(团费包含了签证费)
let
visaMoney
=
0
;
//visaMoney=data.price.visaPrice * sumCount;
let
safeMoney
=
data
.
price
.
safeMoney
*
sumCount
;
let
otherMoney
=
data
.
price
.
otherPrice
*
sumCount
;
// console.log("totalPersion", sumCount);
...
...
@@ -678,7 +684,7 @@ export default defineComponent({
PreferPrice
:
data
.
sumPrice
,
//实付价格
DiscountMoney
:
0
,
//优惠价格
CouponAllotIds
:
""
,
//优惠券id
YSeatNum
:
y
,
//
盈收
YSeatNum
:
y
,
//
ESeatNum
:
f
,
FSeatNum
:
c
,
Commission
:
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment