Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
jz_Travel
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
zhengke
jz_Travel
Commits
62e60ba9
Commit
62e60ba9
authored
Oct 12, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
0d554e42
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
11 deletions
+26
-11
jz_LineDetail.vue
pages/jiuzhai/jz_LineDetail.vue
+5
-7
jz_Reserve.vue
pages/jiuzhai/jz_Reserve.vue
+21
-4
No files found.
pages/jiuzhai/jz_LineDetail.vue
View file @
62e60ba9
...
...
@@ -528,9 +528,9 @@
v-if=
"subItem.childItem.useDinnerType == '2'"
>
午餐:
{{
subItem
.
childItem
.
dinnerName
}}
</text
>
<text
v-if=
"subItem.childItem.useDinnerType == '3'"
>
晚餐:
{{
subItem
.
childItem
.
dinnerName
}}
</text
>
<text
v-if=
"subItem.childItem.useDinnerType == '3'"
>
晚餐:
{{
subItem
.
childItem
.
dinnerName
}}
</text
>
</
template
>
</text>
</view>
...
...
@@ -1273,12 +1273,10 @@ export default {
url
:
"/pages/jiuzhai/jz_Reserve?currentPriceInfo="
+
encodeURIComponent
(
myCurr
)
+
"&ln="
+
this
.
dataList
.
ltName
+
"&seat="
+
encodeURIComponent
(
JSON
.
stringify
(
ren
))
+
"&t
ips
="
+
encodeURIComponent
(
this
.
dataList
.
feature
.
importantTipText
)
,
"&t
cid
="
+
this
.
delMsg
.
tcid
,
});
},
...
...
pages/jiuzhai/jz_Reserve.vue
View file @
62e60ba9
...
...
@@ -501,21 +501,38 @@ export default {
});
},
onLoad
(
option
)
{
if
(
option
.
currentPriceInfo
)
{
console
.
log
(
504
,
option
);
if
(
option
.
seat
)
{
this
.
currentPriceInfo
=
JSON
.
parse
(
decodeURIComponent
(
option
.
currentPriceInfo
)
);
let
t
=
JSON
.
parse
(
decodeURIComponent
(
option
.
seat
)
);
let
t
=
JSON
.
parse
(
option
.
seat
);
this
.
orderMsg
.
ManNum
=
t
.
crCount
;
this
.
orderMsg
.
ChirdNeedBedNum
=
t
.
etCount
;
this
.
orderMsg
.
ChirdNoBedNum
=
t
.
etbCount
;
this
.
orderMsg
.
BabyNum
=
t
.
yeCount
;
this
.
tips
=
decodeURIComponent
(
option
.
tips
);
this
.
calcMoney
();
this
.
ltName
=
option
.
ln
;
}
if
(
option
.
tcid
)
{
this
.
getDetails
(
option
.
tcid
);
}
},
methods
:
{
//获取详情
getDetails
(
id
)
{
this
.
apipost
(
"b2b_get_GetB2BTravelInfoNoDesV1"
,
{
tcid
:
id
},
(
res
)
=>
{
if
(
res
.
resultCode
==
1
)
{
// this.currentPriceInfo = res.data;
this
.
tips
=
res
.
data
.
feature
.
importantTipText
;
this
.
ltName
=
res
.
data
.
ltName
;
}
},
null
);
},
updateUser
()
{
uni
.
navigateBack
({
delta
:
1
,
...
...
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