Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
jd-vx-app
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
jd-vx-app
Commits
d36ebe78
Commit
d36ebe78
authored
Apr 12, 2024
by
肖健
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
token存储key更改,旧的token存在就退出登录(防止pk_key存在自动登录)
parent
c02a5a0c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
App.vue
App.vue
+9
-0
No files found.
App.vue
View file @
d36ebe78
<
script
>
let
plugin
=
requirePlugin
(
'loginPlugin'
);
export
default
{
onLaunch
:
function
()
{
uni
.
hideTabBar
()
...
...
@@ -6,6 +7,14 @@ export default {
const
info
=
uni
.
getSystemInfoSync
()
// 设置状态栏高度(H5顶部无状态栏小程序有状态栏需要撑起高度)
uni
.
setStorageSync
(
'statusBarHeight'
,
info
.
statusBarHeight
)
let
oldToken
=
uni
.
getStorageSync
(
'userToken'
)
if
(
oldToken
)
{
uni
.
removeStorageSync
(
'userToken'
)
plugin
.
logout
().
then
((
res
)
=>
{
});
}
},
onShow
:
function
()
{
uni
.
hideHomeButton
()
...
...
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