Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mayi-mp-shop
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
程默
mayi-mp-shop
Commits
d7d1ead5
Commit
d7d1ead5
authored
Nov 20, 2020
by
张卓
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改扫码进入时,接口请求慢跳转首页问题
parent
7489c404
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
+11
-1
src/pages/index/index.vue
+11
-1
No files found.
src/pages/index/index.vue
View file @
d7d1ead5
<
template
>
<
template
>
<div>
<div>
<web-view
:src=
"link+page+params
"
@
message=
"getMessage"
@
error=
"handleError"
@
load=
"handleLoad"
></web-view>
<web-view
v-if=
"withoutScene"
:src=
"pageUrl
"
@
message=
"getMessage"
@
error=
"handleError"
@
load=
"handleLoad"
></web-view>
</div>
</div>
</
template
>
</
template
>
...
@@ -39,6 +39,7 @@ export default {
...
@@ -39,6 +39,7 @@ export default {
shareOrderSn
:
""
,
shareOrderSn
:
""
,
shareTid
:
""
,
shareTid
:
""
,
newWindowHref
:
''
,
newWindowHref
:
''
,
withoutScene
:
true
,
sharePageList
:
[
sharePageList
:
[
"goods/"
,
"goods/"
,
"receivingGift"
,
"receivingGift"
,
...
@@ -47,6 +48,11 @@ export default {
...
@@ -47,6 +48,11 @@ export default {
]
//分享白名单
]
//分享白名单
};
};
},
},
computed
:
{
pageUrl
()
{
return
this
.
link
+
this
.
page
+
this
.
params
}
},
onLoad
(
options
)
{
onLoad
(
options
)
{
Object
.
assign
(
this
.
$data
,
this
.
$options
.
data
());
Object
.
assign
(
this
.
$data
,
this
.
$options
.
data
());
console
.
log
(
console
.
log
(
...
@@ -136,8 +142,10 @@ export default {
...
@@ -136,8 +142,10 @@ export default {
console
.
log
(
options
)
console
.
log
(
options
)
console
.
log
(
222222
)
console
.
log
(
222222
)
if
(
options
.
scene
.
indexOf
(
'_'
)
==
-
1
){
if
(
options
.
scene
.
indexOf
(
'_'
)
==
-
1
){
this
.
withoutScene
=
false
;
//新二维码扫码进入
//新二维码扫码进入
indexApi
.
getShareSceneRecord
(
options
.
scene
).
then
(
res
=>
{
indexApi
.
getShareSceneRecord
(
options
.
scene
).
then
(
res
=>
{
this
.
withoutScene
=
true
;
if
(
res
.
data
.
code
==
'200'
){
if
(
res
.
data
.
code
==
'200'
){
this
.
page
=
res
.
data
.
data
.
pageUri
;
this
.
page
=
res
.
data
.
data
.
pageUri
;
let
paramsObj
=
JSON
.
parse
(
res
.
data
.
data
.
scene
);
let
paramsObj
=
JSON
.
parse
(
res
.
data
.
data
.
scene
);
...
@@ -164,6 +172,8 @@ export default {
...
@@ -164,6 +172,8 @@ export default {
}
}
this
.
params
+=
params
this
.
params
+=
params
}
}
}).
catch
((
err
)
=>
{
this
.
withoutScene
=
true
;
})
})
}
else
{
}
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