Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gantt
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
杨子
vue-gantt
Commits
d72527e0
Commit
d72527e0
authored
Jun 07, 2022
by
杨子
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加token
parent
184fb97e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
HelloWorld.vue
src/components/HelloWorld.vue
+1
-1
index.ts
src/router/index.ts
+1
-0
No files found.
src/components/HelloWorld.vue
View file @
d72527e0
...
@@ -72,7 +72,7 @@ const getRandomColor = function(){
...
@@ -72,7 +72,7 @@ const getRandomColor = function(){
&&
(
color
.
length
==
6
)
?
color
:
arguments
.
callee
(
color
);
&&
(
color
.
length
==
6
)
?
color
:
arguments
.
callee
(
color
);
})(
''
);
})(
''
);
}
}
const
baseUrl
=
'/task/helicopterTask/getGanttInfo?id='
+
sessionStorage
.
getItem
(
'taskResultId'
)
const
baseUrl
=
'/task/helicopterTask/getGanttInfo?id='
+
sessionStorage
.
getItem
(
'taskResultId'
)
+
"&token="
+
sessionStorage
.
getItem
(
'token'
)
httpRequest
httpRequest
.
get
(
baseUrl
)
.
get
(
baseUrl
)
...
...
src/router/index.ts
View file @
d72527e0
...
@@ -24,6 +24,7 @@ const router = createRouter({
...
@@ -24,6 +24,7 @@ const router = createRouter({
router
.
beforeEach
((
to
,
from
,
next
)
=>
{
router
.
beforeEach
((
to
,
from
,
next
)
=>
{
sessionStorage
.
setItem
(
'taskResultId'
,
to
.
query
.
id
as
string
)
sessionStorage
.
setItem
(
'taskResultId'
,
to
.
query
.
id
as
string
)
sessionStorage
.
setItem
(
'token'
,
to
.
query
.
token
as
string
)
next
()
next
()
})
})
...
...
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