Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
so-manage-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
smart-operation
so-manage-ui
Commits
e37dc190
Commit
e37dc190
authored
Jun 28, 2023
by
张俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[feat](任务管理): 任务详情部分静态页面
parent
139e3652
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
7 deletions
+29
-7
src/page/main/auto-maintenance/task-manage/detail/index.vue
src/page/main/auto-maintenance/task-manage/detail/index.vue
+28
-0
src/page/main/auto-maintenance/task-manage/index.vue
src/page/main/auto-maintenance/task-manage/index.vue
+1
-7
No files found.
src/page/main/auto-maintenance/task-manage/detail/index.vue
0 → 100644
View file @
e37dc190
<
template
>
<div
class=
"detail_container"
>
<bg-breadcrumb></bg-breadcrumb>
<div
class=
"main_container"
>
<bg-form-gap
title=
"基本信息"
></bg-form-gap>
<bg-form-gap
title=
"执行脚本"
></bg-form-gap>
<bg-form-gap
title=
"执行主机"
></bg-form-gap>
<bg-form-gap
title=
"任务历史"
></bg-form-gap>
</div>
</div>
</
template
>
<
script
setup
>
import
{
reactive
,
ref
,
onBeforeMount
,
toRefs
}
from
"
vue
"
;
import
{
useRouter
,
useRoute
}
from
"
vue-router
"
;
import
{
ElMessage
}
from
"
element-plus
"
;
import
bgBreadcrumb
from
"
@/components/bg-breadcrumb.vue
"
;
const
router
=
useRouter
();
const
route
=
useRoute
();
const
state
=
reactive
({
data
:
1
});
const
{
data
}
=
toRefs
(
state
);
</
script
>
<
style
lang=
"scss"
scoped
>
.main_container
{
padding
:
24px
32px
;
}
</
style
>
src/page/main/auto-maintenance/task-manage/index.vue
View file @
e37dc190
...
@@ -46,13 +46,7 @@
...
@@ -46,13 +46,7 @@
:select=
"true"
:select=
"true"
:stripe=
"true"
>
:stripe=
"true"
>
<
template
v-slot:name=
"{ row }"
>
<
template
v-slot:name=
"{ row }"
>
<span
<span
class=
"can_click_text"
@
click=
"gotoPage(`/auto-maintenance/task-manage/detail?id=$
{row.id}`)">
class=
"can_click_text"
@
click=
"gotoPage(`/auto-maintenance/task-manage/detail?id=$
{row.id}`)"
v-if="row.children">
{{
row
.
name
}}
</span>
<span
v-else
>
{{
row
.
name
}}
{{
row
.
name
}}
</span>
</span>
</
template
>
</
template
>
...
...
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