Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
million
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
Merge Requests
0
Merge Requests
0
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
viitto
million
Commits
0c70cf42
Commit
0c70cf42
authored
Feb 28, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/viitto/million
parents
efe262dd
57a1e419
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
286 additions
and
186 deletions
+286
-186
orderPreview.vue
src/components/car/orderPreview.vue
+213
-0
calendar.vue
src/components/trip/calendar.vue
+1
-1
orderPreview.vue
src/components/trip/orderPreview.vue
+1
-0
detailsCar.vue
src/pages/detailsCar.vue
+70
-184
detailsNew.vue
src/pages/detailsNew.vue
+1
-1
No files found.
src/components/car/orderPreview.vue
0 → 100644
View file @
0c70cf42
<
template
>
<div
class=
"column full-height"
>
<div
class=
"col"
>
<div
class=
"text-right"
>
<q-btn
color=
"primary"
icon=
"refresh"
label=
"全部重選"
@
click=
"resetHandler"
flat
/>
</div>
<div
class=
"text-grey-6 f12 q-my-md"
>
選擇類型
</div>
<div
class=
"row wrap"
>
<q-btn
@
click=
"handleSelect(item)"
:color=
"item.Id === selectedCar?'primary':'grey-5'"
unelevated
class=
"car-tag mr"
v-for=
"item in CarTypeList"
:key=
"item.Id"
>
{{
item
.
CarName
}}
(
{{
item
.
PeopleNum
}}
人)
</q-btn>
</div>
<div
class=
"text-grey-6 f12 q-my-md"
>
選擇數量
</div>
<div
class=
"row items-end"
>
<div
class=
"col"
:class=
"
{'column':$q.platform.is.mobile}">
<div
v-if=
"selectedObj"
>
<span
class=
"text-subtitle2 text-weight-bold"
>
{{
selectedObj
.
CarName
}}
</span>
<span
class=
"text-grey-6 f12 q-ml-sm"
></span>
(
{{
selectedObj
.
PeopleNum
}}
人)
</span>
</div>
<div
v-if=
"$q.platform.is.mobile"
>
<span
class=
"text-grey-7 product-price"
style=
"font-size: 13px"
>
CNY
{{
moneyFormat
(
p
.
originalB2CPrice
,
0
)
}}
/每辆
</span>
</div>
</div>
<div
class=
"row items-end"
>
<span
v-if=
"$q.platform.is.desktop"
class=
"text-grey-7 product-price"
style=
"font-size: 13px"
>
CNY
{{
moneyFormat
(
p
.
originalB2CPrice
,
0
)
}}
/每辆
</span>
<q-input
style=
"width: 150px"
@
input=
"changePeople"
v-model=
"chosenObj.Count"
class=
"col"
:class=
"
{
'q-ml-sm q-px-none q-pl-none': $q.platform.is.desktop,
}"
mask="#"
reverse-fill-mask
dense
standout
readonly
>
<template
v-slot:prepend
>
<q-btn
color=
"primary"
size=
"sm"
class=
"q-px-none"
flat
icon=
"remove"
@
click=
"addPeople('Count', -1)"
/>
</
template
>
<
template
v-slot:append
>
<q-btn
color=
"primary"
size=
"sm"
class=
"q-px-none"
flat
icon=
"add"
@
click=
"addPeople('Count', 1)"
/>
</
template
>
</q-input>
</div>
</div>
<div
class=
"text-grey-6 f12 q-mt-mb"
v-if=
"p.isSupportChildren == 2"
>
本團只支持成人出遊
</div>
<div
v-if=
"p.safeMoney > 0"
class=
"q-pt-md q-mt-md row items-center"
style=
"border-top: 1px dashed #eee"
>
<div
class=
"text-grey-6 f12 col"
>
保險服務費
</div>
<div
class=
"product-money f12"
>
CNY {{ p.safeMoney }}/每人
</div>
</div>
</div>
<div
class=
"q-mt-md q-pt-md"
style=
"border-top: 1px dashed #eee"
>
<div
class=
"row items-center"
>
<span
class=
"text-subtitle2 text-grey-6 col"
>
總金額
</span>
<span
class=
"text-h6 text-primary product-price"
>
CNY {{ moneyFormat(sumPrice,0) }}
</span>
</div>
<div
class=
"q-mt-md text-right"
>
<span
class=
"q-mr-lg f12 text-negative"
v-if=
"!p.startDate"
>
{{$q.platform.is.mobile?'請選擇上面的出行日期':'請選擇左側的出行日期'}}
</span>
<q-btn
color=
"primary"
label=
"立即訂購"
unelevated
class=
"q-px-lg"
:disable=
"sumPrice==0"
/>
</div>
</div>
</div>
</template>
<
script
>
export
default
{
props
:
[
"price"
,
"CarTypeList"
,
"configId"
,
"Month"
],
watch
:
{
price
:
{
handler
(
n
,
o
)
{
this
.
p
=
n
;
console
.
log
(
n
,
'-----'
)
this
.
chosenObj
.
startDate
=
n
.
startDate
;
this
.
calcMoney
()
},
deep
:
true
,
immediate
:
true
},
CarTypeList
:
{
handler
(
n
,
o
)
{
this
.
CarTypeList
=
n
;
this
.
selectedCar
=
this
.
CarTypeList
[
0
].
Id
},
deep
:
true
,
immediate
:
true
},
},
data
()
{
return
{
p
:
{},
chosenObj
:
null
,
sumPrice
:
0
,
selectedObj
:
null
,
priceList
:
[],
selectedCar
:
0
};
},
created
()
{
this
.
initModel
();
if
(
this
.
p
.
startDate
){
this
.
chosenObj
.
startDate
=
this
.
p
.
startDate
;
this
.
calcMoney
()
this
.
getCarPriceData2
()
this
.
selectedCar
=
this
.
CarTypeList
[
0
].
Id
}
},
methods
:
{
// 获取车的详情
getCarPriceData2
()
{
this
.
priceList
=
[]
this
.
apipost
(
"b2c_get_GetCarSingleProductMonthPrice"
,
{
ProductId
:
this
.
configId
,
Month
:
this
.
Month
,
AirportId
:
''
,
CarTypeId
:
this
.
selectedCar
},
(
r
)
=>
{
if
(
r
.
data
.
resultCode
==
1
)
{
r
.
data
.
data
.
forEach
(
x
=>
{
x
.
startDate
=
x
.
Date
x
.
originalB2CPrice
=
x
.
Price
x
.
remainNum
=
1
x
.
Count
=
1
x
.
isSupportChildren
=
1
x
.
safeMoney
=
0
this
.
p
.
originalB2CPrice
=
x
.
Price
})
this
.
$emit
(
'getPriceList'
,
JSON
.
stringify
(
r
.
data
.
data
),
this
.
selectedCar
)
}
},
null
)
},
handleSelect
(
item
){
this
.
selectedObj
=
item
this
.
selectedCar
=
item
.
Id
this
.
getCarPriceData2
()
},
initModel
()
{
this
.
sumPrice
=
0
this
.
chosenObj
=
{
startDate
:
""
,
Count
:
1
,
remark
:
""
,
};
},
resetHandler
()
{
this
.
p
=
{};
this
.
initModel
()
this
.
$emit
(
"reset"
);
},
changePeople
(
val
)
{},
addPeople
(
m
,
i
,
isDf
=
false
)
{
this
.
chosenObj
[
m
]
=
parseInt
(
this
.
chosenObj
[
m
])
+
i
;
if
(
m
!=
'Count'
){
this
.
chosenObj
[
m
]
=
this
.
chosenObj
[
m
]
<
0
?
0
:
this
.
chosenObj
[
m
]
++
;
}
else
{
this
.
chosenObj
[
m
]
=
this
.
chosenObj
[
m
]
<
1
?
1
:
this
.
chosenObj
[
m
]
++
;
}
this
.
calcMoney
()
},
calcMoney
()
{
if
(
!
this
.
p
)
return
;
let
money
=
this
.
p
.
originalB2CPrice
*
this
.
chosenObj
.
Count
;
this
.
sumPrice
=
money
;
},
},
};
</
script
>
<
style
></
style
>
src/components/trip/calendar.vue
View file @
0c70cf42
...
...
@@ -108,7 +108,7 @@ export default {
},
watch
:
{
priceList
:
{
handler
(
oldValue
,
newVal
)
{
handler
(
newVal
,
oldValue
)
{
this
.
prices
=
newVal
;
this
.
init
();
},
...
...
src/components/trip/orderPreview.vue
View file @
0c70cf42
...
...
@@ -273,6 +273,7 @@ export default {
this
.
calcMoney
()
},
deep
:
true
,
immediate
:
true
,
},
},
data
()
{
...
...
src/pages/detailsCar.vue
View file @
0c70cf42
This diff is collapsed.
Click to expand it.
src/pages/detailsNew.vue
View file @
0c70cf42
...
...
@@ -786,7 +786,7 @@ export default {
// }
this
.
stickyHeight
=
document
.
querySelector
(
".q-header--hidden"
)
?
"translateY(0px)"
:
"translateY(
8
5px)"
;
:
"translateY(
4
5px)"
;
this
.
currentHeight
=
temp
;
if
(
this
.
videoPosition
>
0
&&
...
...
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