Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
apaas-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gzga-jzapi
apaas-ui
Commits
8947da7f
Commit
8947da7f
authored
Aug 08, 2020
by
刘殿昕
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
组织管理页面
parent
25f2196c
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
61 additions
and
14 deletions
+61
-14
src/components/work-flow/super-flow.vue
src/components/work-flow/super-flow.vue
+1
-8
src/pages/data-analysis/operation-overview.vue
src/pages/data-analysis/operation-overview.vue
+5
-0
src/pages/data-analysis/org-application.vue
src/pages/data-analysis/org-application.vue
+5
-0
src/pages/data-analysis/org-service.vue
src/pages/data-analysis/org-service.vue
+5
-0
src/pages/data-analysis/service-control.vue
src/pages/data-analysis/service-control.vue
+5
-0
src/pages/workbench/component-center/process-management/index.vue
...s/workbench/component-center/process-management/index.vue
+4
-0
src/pages/workbench/component-center/process-management/process-design/index.vue
...ponent-center/process-management/process-design/index.vue
+11
-1
src/router/index.js
src/router/index.js
+25
-5
No files found.
src/components/work-flow/super-flow.vue
View file @
8947da7f
<!--
* User: CHT
* Date: 2020/6/28
* Time: 17:48
-->
<
template
>
<div>
<div>
<el-button
@
click=
"getData"
>
获取参数
</el-button>
</div>
<div
class=
"super-flow-demo1"
>
<div
class=
"node-container"
>
<p
class=
"label_head"
>
节点类型
</p>
...
...
src/pages/data-analysis/operation-overview.vue
0 → 100644
View file @
8947da7f
<
template
>
<div>
组织-运行概况
</div>
</
template
>
\ No newline at end of file
src/pages/data-analysis/org-application.vue
0 → 100644
View file @
8947da7f
<
template
>
<div>
组织-应用
</div>
</
template
>
src/pages/data-analysis/org-service.vue
0 → 100644
View file @
8947da7f
<
template
>
<div>
组织-服务
</div>
</
template
>
\ No newline at end of file
src/pages/data-analysis/service-control.vue
0 → 100644
View file @
8947da7f
<
template
>
<div>
组织-服务管控
</div>
</
template
>
\ No newline at end of file
src/pages/workbench/component-center/process-management/index.vue
View file @
8947da7f
...
...
@@ -29,6 +29,10 @@ export default {
name
:
"
流程监控
"
,
path
:
`/progress/monitoring`
,
},
{
name
:
"
流程设计
"
,
path
:
`/progress/designs`
,
}
],
navList
:
[],
}),
...
...
src/pages/workbench/component-center/process-management/process-design/index.vue
View file @
8947da7f
<
template
>
<div>
流程设计
<div>
<el-button
@
click=
"getData"
>
获取参数
</el-button>
</div>
</div>
</
template
>
<
script
>
export
default
{
methods
:
{
getData
()
{}
}
};
</
script
>
src/router/index.js
View file @
8947da7f
...
...
@@ -274,10 +274,10 @@ export default new Router({
component
:
()
=>
import
(
"
@/pages/workbench/component-center/process-management/monitoring/index
"
),
},
// 流程监控
{
path
:
"
/progress/design
"
,
name
:
"
process_design
"
,
path
:
"
/progress/design
s
"
,
name
:
"
process_design
s
"
,
component
:
()
=>
import
(
"
@/pages/workbench/component-center/process-management/process-design/index
"
),
},
// 流程
监控
},
// 流程
设计
],
},
// 流程设计
{
...
...
@@ -410,15 +410,35 @@ export default new Router({
component
:
()
=>
import
(
"
@/pages/data-analysis/data-analysis
"
),
children
:
[
{
path
:
"
/data_analysis/my_service
"
,
// 数据分析中心
path
:
"
/data_analysis/my_service
"
,
// 数据分析中心
-普通
name
:
"
myServiceDataAnalysis
"
,
component
:
()
=>
import
(
"
@/pages/data-analysis/my-service
"
),
},
{
path
:
"
/data_analysis/my_application
"
,
// 数据分析中心
path
:
"
/data_analysis/my_application
"
,
// 数据分析中心
-普通
name
:
"
myApplicationDataAnalysis
"
,
component
:
()
=>
import
(
"
@/pages/data-analysis/my-application
"
),
},
{
path
:
"
/data_analysis/org_service
"
,
// 数据分析中心服务-组织
name
:
"
orgServiceDataAnalysis
"
,
component
:
()
=>
import
(
"
@/pages/data-analysis/org-service
"
),
},
{
path
:
"
/data_analysis/org_application
"
,
// 数据分析中心应用-组织
name
:
"
orgApplicationDataAnalysis
"
,
component
:
()
=>
import
(
"
@/pages/data-analysis/org-application
"
),
},
{
path
:
"
/data_analysis/operation_overview
"
,
// 运行概况-组织
name
:
"
operationOverview
"
,
component
:
()
=>
import
(
"
@/pages/data-analysis/operation-overview
"
),
},
{
path
:
"
/data_analysis/service_control
"
,
// 服务管控-组织
name
:
"
serviceControl
"
,
component
:
()
=>
import
(
"
@/pages/data-analysis/service-control
"
),
},
],
},
{
...
...
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