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
2f445113
Commit
2f445113
authored
Jun 07, 2022
by
杨子
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
甘特图对接
parent
51352f50
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
HelloWorld.vue
src/components/HelloWorld.vue
+11
-2
index.ts
src/router/index.ts
+5
-0
No files found.
src/components/HelloWorld.vue
View file @
2f445113
...
@@ -41,7 +41,7 @@ import { reactive, ref } from "vue";
...
@@ -41,7 +41,7 @@ import { reactive, ref } from "vue";
import
GGanttRow
from
"./GGanttRow.vue"
;
import
GGanttRow
from
"./GGanttRow.vue"
;
import
GGanttChart
from
"./GGanttChart.vue"
;
import
GGanttChart
from
"./GGanttChart.vue"
;
import
{
GanttBarObject
}
from
"../models/models"
;
import
{
GanttBarObject
}
from
"../models/models"
;
import
{
ClickOutside
as
vClickOutside
,
ElPopover
}
from
"element-plus"
import
{
ClickOutside
as
vClickOutside
,
ElPopover
,
ElMessage
}
from
"element-plus"
import
httpRequest
from
'@/utils/httpRequest.js'
import
httpRequest
from
'@/utils/httpRequest.js'
let
chartStart
=
ref
(
"2022-02-01 12:00"
);
let
chartStart
=
ref
(
"2022-02-01 12:00"
);
...
@@ -72,13 +72,22 @@ const getRandomColor = function(){
...
@@ -72,13 +72,22 @@ const getRandomColor = function(){
&&
(
color
.
length
==
6
)
?
color
:
arguments
.
callee
(
color
);
&&
(
color
.
length
==
6
)
?
color
:
arguments
.
callee
(
color
);
})(
''
);
})(
''
);
}
}
const
baseUrl
=
'/task/helicopterTask/getGanttInfo?id=
1'
const
baseUrl
=
'/task/helicopterTask/getGanttInfo?id=
'
+
sessionStorage
.
getItem
(
'taskResultId'
)
const
url
=
process
.
env
.
NODE_ENV
===
'production'
?
'/jeeplus-vue'
+
baseUrl
:
baseUrl
const
url
=
process
.
env
.
NODE_ENV
===
'production'
?
'/jeeplus-vue'
+
baseUrl
:
baseUrl
httpRequest
httpRequest
.
get
(
url
)
.
get
(
url
)
.
then
(({
data
})
=>
{
.
then
(({
data
})
=>
{
if
(
!
data
){
ElMessage
({
message
:
'数据正在计算中...'
,
type
:
'warning'
})
return
}
let
{
beginTime
,
endTime
,
name
,
contreeList
}
=
data
;
let
{
beginTime
,
endTime
,
name
,
contreeList
}
=
data
;
emits
(
"updateTaskName"
,
name
);
emits
(
"updateTaskName"
,
name
);
chartStart
.
value
=
beginTime
;
chartStart
.
value
=
beginTime
;
...
...
src/router/index.ts
View file @
2f445113
...
@@ -22,4 +22,9 @@ const router = createRouter({
...
@@ -22,4 +22,9 @@ const router = createRouter({
routes
routes
})
})
router
.
beforeEach
((
to
,
from
,
next
)
=>
{
sessionStorage
.
setItem
(
'taskResultId'
,
to
.
query
.
id
as
string
)
next
()
})
export
default
router
export
default
router
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