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
0dc540a1
Commit
0dc540a1
authored
Jun 19, 2023
by
张俊
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
https://cloud.wodcloud.com/git/smart-operation/so-manage-ui
into dev
parents
17a00040
b5dd6f33
Changes
19
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
494 additions
and
48 deletions
+494
-48
src/components/bg-menu.vue
src/components/bg-menu.vue
+374
-47
src/main.js
src/main.js
+1
-1
src/page/main/authority/organization/index.vue
src/page/main/authority/organization/index.vue
+7
-0
src/page/main/authority/role/index.vue
src/page/main/authority/role/index.vue
+7
-0
src/page/main/authority/user/index.vue
src/page/main/authority/user/index.vue
+7
-0
src/page/main/auto-maintenance/host-manage/index.vue
src/page/main/auto-maintenance/host-manage/index.vue
+7
-0
src/page/main/auto-maintenance/task-history/index.vue
src/page/main/auto-maintenance/task-history/index.vue
+7
-0
src/page/main/auto-maintenance/task-manage/index.vue
src/page/main/auto-maintenance/task-manage/index.vue
+7
-0
src/page/main/forewarning/list/index.vue
src/page/main/forewarning/list/index.vue
+7
-0
src/page/main/forewarning/rule-set/index.vue
src/page/main/forewarning/rule-set/index.vue
+7
-0
src/page/main/system-admin/dict/index.vue
src/page/main/system-admin/dict/index.vue
+7
-0
src/page/main/system-admin/log/index.vue
src/page/main/system-admin/log/index.vue
+7
-0
src/page/main/system-admin/menu/index.vue
src/page/main/system-admin/menu/index.vue
+7
-0
src/page/main/system-admin/preference/index.vue
src/page/main/system-admin/preference/index.vue
+7
-0
src/page/main/system-admin/visit-control/index.vue
src/page/main/system-admin/visit-control/index.vue
+7
-0
src/page/main/ticket/business-ticket-list/index.vue
src/page/main/ticket/business-ticket-list/index.vue
+7
-0
src/page/main/ticket/business-ticket-manage/index.vue
src/page/main/ticket/business-ticket-manage/index.vue
+7
-0
src/page/main/ticket/my-business-ticket/index.vue
src/page/main/ticket/my-business-ticket/index.vue
+7
-0
src/page/main/ticket/my-warn-ticket/index.vue
src/page/main/ticket/my-warn-ticket/index.vue
+7
-0
No files found.
src/components/bg-menu.vue
View file @
0dc540a1
This diff is collapsed.
Click to expand it.
src/main.js
View file @
0dc540a1
...
@@ -82,7 +82,7 @@ function getMenuObj(menu, parentRowPath, menuObj) {
...
@@ -82,7 +82,7 @@ function getMenuObj(menu, parentRowPath, menuObj) {
});
});
}
}
store
.
commit
(
"
setWhiteList
"
,
[
"
/
"
,
"
/login
"
,
"
/register
"
,
"
/password
"
]);
store
.
commit
(
"
setWhiteList
"
,
[
"
/
"
,
"
/login
"
,
"
/register
"
,
"
/password
"
]);
Promise
.
all
([
getUser
(),
getMenu
(
"
dadb2d3f-e263-48d1-9389-42acb9ea49f8
"
)])
Promise
.
all
([
getUser
(),
getMenu
(
"
79a8f214-db78-4db7-9c28-db66276b4be2
"
)])
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
if
(
res
[
0
].
data
.
code
==
200
&&
res
[
1
].
data
.
code
==
200
)
{
if
(
res
[
0
].
data
.
code
==
200
&&
res
[
1
].
data
.
code
==
200
)
{
//已登录则记录菜单和用户信息
//已登录则记录菜单和用户信息
...
...
src/page/main/authority/organization/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
组织管理
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/authority/role/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
角色管理
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/authority/user/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
用户管理
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/auto-maintenance/host-manage/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
主机管理
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/auto-maintenance/task-history/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
任务历史
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/auto-maintenance/task-manage/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
任务管理
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/forewarning/list/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
预警列表
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/forewarning/rule-set/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
预警规则管理
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/system-admin/dict/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
字典管理
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/system-admin/log/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
日志管理
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/system-admin/menu/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
菜单管理
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/system-admin/preference/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
首选项配置
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/system-admin/visit-control/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
访问控制管理
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/ticket/business-ticket-list/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
业务工单列表
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/ticket/business-ticket-manage/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
业务工单管理
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/ticket/my-business-ticket/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
我的业务工单
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/page/main/ticket/my-warn-ticket/index.vue
0 → 100644
View file @
0dc540a1
<
template
>
<div>
我的预警工单
</div>
</
template
>
<
script
setup
></
script
>
<
style
lang=
"scss"
scoped
></
style
>
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