Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
quantum-blocks-h5
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
ui
quantum-blocks-h5
Commits
a3849ab0
Commit
a3849ab0
authored
Dec 22, 2021
by
郭志伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feature(sa): 完成调整
parent
0a30cf12
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
init.service.ts
app/web/service/init.service.ts
+8
-4
No files found.
app/web/service/init.service.ts
View file @
a3849ab0
// import store from '../stor
e';
import
{
isWechat
,
isApp
,
errorQueryValues
}
from
'
./utils
.service
'
;
import
{
errorQueryValues
}
from
'
./utils.servic
e
'
;
import
{
loginSa
}
from
'
./sa
.service
'
;
import
Cookies
from
'
./cookieStorage.service
'
;
import
localStorage
from
'
./localStorage.service
'
;
// formXcxPage:标识是从小程序跳转过来的;
const
localStorageParams
=
[
'
creditToken
'
,
'
vccToken
'
,
'
vccChannel
'
,
'
sonVccChannel
'
,
'
formXcxPage
'
,
'
tenantId
'
];
const
localStorageParams
=
[
'
creditToken
'
,
'
vccToken
'
,
'
vccChannel
'
,
'
sonVccChannel
'
,
'
formXcxPage
'
,
'
tenantId
'
,
'
distinctID
'
];
const
cookiesParams
=
[
'
h
'
];
export
default
{
...
...
@@ -17,7 +17,11 @@ export default {
if
(
router
.
mode
===
'
history
'
&&
!
to
.
hash
)
{
localStorageParams
.
forEach
(
item
=>
{
if
(
to
.
query
[
item
]
&&
errorQueryValues
.
indexOf
(
to
.
query
[
item
])
===
-
1
)
{
if
(
item
===
'
distinctID
'
)
{
loginSa
(
to
.
query
[
item
]);
}
else
{
localStorage
.
set
(
item
,
to
.
query
[
item
]);
}
}
else
{
localStorage
.
set
(
item
,
''
);
}
...
...
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