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
8a1193e8
Commit
8a1193e8
authored
Feb 06, 2023
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
支持scene传参
parent
c53b2af6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
99 additions
and
76 deletions
+99
-76
jz_LineDetail.vue
pages/jiuzhai/jz_LineDetail.vue
+99
-76
No files found.
pages/jiuzhai/jz_LineDetail.vue
View file @
8a1193e8
...
...
@@ -1094,6 +1094,7 @@ export default {
},
created
()
{},
onLoad
(
option
)
{
if
(
!
option
.
scene
){
if
(
option
.
tcid
)
{
this
.
delMsg
.
tcid
=
option
.
tcid
;
}
...
...
@@ -1103,6 +1104,19 @@ export default {
if
(
option
.
cityId
)
{
this
.
delMsg
.
cityId
=
option
.
cityId
;
}
}
else
{
let
t
=
decodeURIComponent
(
option
.
scene
).
split
(
'&'
)
t
.
forEach
(
x
=>
{
let
item
=
x
.
split
(
'='
)
if
(
item
.
length
===
2
){
if
(
item
[
0
]
===
'tcid'
){
this
.
delMsg
.
tcid
=
item
[
1
]
}
else
if
(
item
[
0
]
===
'configId'
){
this
.
delMsg
.
configId
=
item
[
1
]
}
}
})
}
this
.
getDetails
();
this
.
U
=
uni
.
getStorageSync
(
"mall_UserInfo"
);
if
(
this
.
U
)
{
...
...
@@ -1275,6 +1289,7 @@ export default {
this
.
delMsg
,
(
res
)
=>
{
if
(
res
.
resultCode
==
1
)
{
try
{
res
.
data
.
tempImgCover
=
JSON
.
parse
(
res
.
data
.
imgCover
);
// let tempPrice= res.data.priceList.filter(x=>x.remainNum>0)
// res.data.priceList=tempPrice
...
...
@@ -1343,6 +1358,14 @@ export default {
);
}
// #endif
}
catch
(
e
){
//TODO handle the exception
uni
.
showToast
({
icon
:
"none"
,
title
:
'团队信息不完善,无法完成显示'
})
}
}
else
{
}
},
...
...
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