Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
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
罗超
confucius
Commits
6f08a49d
Commit
6f08a49d
authored
Oct 12, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增页面
parent
8b735046
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
414 additions
and
2 deletions
+414
-2
menu-form.vue
src/components/system/menu-form.vue
+1
-1
role-form.vue
src/components/system/role-form.vue
+174
-0
menu.vue
src/pages/system/menu.vue
+1
-1
role.vue
src/pages/system/role.vue
+233
-0
routes.js
src/router/routes.js
+5
-0
No files found.
src/components/system/menu
/menu
-form.vue
→
src/components/system/menu-form.vue
View file @
6f08a49d
...
...
@@ -46,7 +46,7 @@
getMenuTypeList
,
getMenuLevelList
,
getMenuInfo
}
from
'../../
../
api/system/index'
}
from
'../../api/system/index'
export
default
{
props
:
{
saveObj
:
{
...
...
src/components/system/role-form.vue
0 → 100644
View file @
6f08a49d
<
template
>
<q-dialog
v-model=
"persistent"
content-class=
"bg-grey-1"
persistent
transition-show=
"scale"
transition-hide=
"scale"
>
<q-card
style=
"width: 800px;max-width:900px;"
>
<q-card-section>
<div
class=
"text-h6"
>
{{
objOption
.
MenuId
==
0
?
'新增菜单信息'
:
'修改菜单信息'
}}
</div>
</q-card-section>
<q-card-section
class=
"q-pt-none scroll"
style=
"max-height: 70vh"
>
<div
class=
"text-caption q-mb-lg q-px-md text-grey-6"
>
菜单信息
</div>
<div
class=
"row wrap"
>
<q-input
filled
stack-label
maxlength=
"20"
:dense=
"false"
v-model=
"objOption.MenuName"
ref=
"MenuName"
class=
"col-6 q-pr-lg q-pb-lg"
label=
"菜单名称"
:rules=
"[val => !!val || '请填写菜单名称']"
/>
<q-input
filled
stack-label
maxlength=
"50"
:dense=
"false"
v-model=
"objOption.MenuUrl"
ref=
"MenuUrl"
class=
"col-6 q-pr-lg q-pb-lg"
label=
"菜单地址"
/>
<q-select
class=
"col-6 q-pb-lg"
v-model=
"objOption.MenuType"
:options=
"MenuTypeOpts"
emit-value
map-options
label=
"菜单类型"
@
input=
"queryMenuList()"
/>
<q-select
class=
"col-6 q-pb-lg"
v-model=
"objOption.MenuLevel"
:options=
"MenuLevelOpts"
emit-value
map-options
label=
"菜单等级"
@
input=
"queryMenuList()"
/>
<q-select
:option-value=
"(item) => item === null ? null : item.MenuId"
option-label=
"MenuName"
v-model=
"objOption.ParentId"
:options=
"MenuList"
label=
"上级菜单"
:dense=
"false"
emit-value
map-options
class=
"col-6 q-pb-lg"
/>
<q-input
stack-label
maxlength=
"50"
:dense=
"false"
v-model=
"objOption.MenuIcon"
class=
"col-6 q-pr-lg q-pb-lg"
label=
"图标"
/>
<q-input
filled
stack-label
maxlength=
"50"
:dense=
"false"
v-model=
"objOption.SortNum"
class=
"col-6 q-pr-lg q-pb-lg"
label=
"排序"
/>
<div
class=
"col-6 q-pr-lg q-pb-lg q-pt-lg"
>
<q-toggle
size=
"md"
label=
"状态"
color=
"primary"
:false-value=
"1"
:true-value=
"0"
v-model=
"objOption.Status"
/>
<div
class=
"text-grey-6 text-caption"
>
注意:关闭后,菜单将无法正常使用.
</div>
</div>
</div>
</q-card-section>
<q-separator
/>
<q-card-actions
align=
"right"
class=
"bg-white"
>
<q-btn
label=
"取消"
color=
"dark"
style=
"font-weight:400 !important"
@
click=
"closeSaveForm"
/>
<q-btn
label=
"立即提交"
color=
"accent q-px-md"
style=
"font-weight:400 !important"
:loading=
"saveLoading"
@
click=
"saveSystemMenu"
/>
</q-card-actions>
</q-card>
</q-dialog>
</
template
>
<
script
>
import
{
getMenuList
,
saveMenu
,
getMenuTypeList
,
getMenuLevelList
,
getMenuInfo
}
from
'../../api/system/index'
export
default
{
props
:
{
saveObj
:
{
type
:
Object
,
default
:
null
}
},
data
()
{
return
{
//菜单等级
MenuLevelOpts
:
[],
//菜单类型
MenuTypeOpts
:
[],
persistent
:
true
,
objOption
:
{
MenuId
:
0
,
//菜单编号
ParentId
:
0
,
//父级节点编号
MenuName
:
""
,
//菜单名称
MenuUrl
:
""
,
//菜单地址
MenuIcon
:
""
,
//菜单图标
MenuLevel
:
-
1
,
//菜单等级
MenuType
:
-
1
,
//菜单类型
SortNum
:
0
,
//排序
Status
:
0
,
//状态(0-正常,1-禁用)},
},
optionTitle
:
""
,
//菜单列表
MenuList
:
[],
saveLoading
:
false
,
}
},
mounted
()
{
this
.
initData
();
this
.
initObj
()
},
methods
:
{
//获取菜单列表
queryMenuList
()
{
this
.
MenuList
=
[];
var
qMsg
=
{
MenuLevel
:
Number
(
this
.
objOption
.
MenuLevel
-
1
),
MenuType
:
this
.
objOption
.
MenuType
}
getMenuList
(
qMsg
).
then
(
res
=>
{
var
tempArray
=
[];
if
(
res
.
Data
&&
res
.
Data
.
length
>
0
)
{
res
.
Data
.
forEach
(
item
=>
{
var
obj
=
{
MenuId
:
item
.
MenuId
.
toString
(),
MenuName
:
item
.
MenuName
};
tempArray
.
push
(
obj
);
});
}
this
.
MenuList
=
tempArray
;
this
.
$forceUpdate
();
})
},
//初始化下拉框
initData
()
{
this
.
MenuTypeOpts
=
getMenuTypeList
();
this
.
MenuLevelOpts
=
getMenuLevelList
();
},
//初始化表单
initObj
()
{
if
(
this
.
saveObj
&&
this
.
saveObj
.
MenuId
>
0
)
{
if
(
this
.
saveObj
.
MenuType
>
0
||
this
.
saveObj
.
MenuLevel
>
0
)
{
this
.
objOption
.
MenuType
=
this
.
saveObj
.
MenuType
;
this
.
objOption
.
MenuLevel
=
this
.
saveObj
.
MenuLevel
;
this
.
queryMenuList
();
}
getMenuInfo
({
MenuId
:
this
.
saveObj
.
MenuId
}).
then
(
res
=>
{
this
.
objOption
.
MenuId
=
res
.
Data
.
MenuId
;
this
.
objOption
.
ParentId
=
res
.
Data
.
ParentId
.
toString
();
this
.
objOption
.
MenuName
=
res
.
Data
.
MenuName
;
this
.
objOption
.
MenuUrl
=
res
.
Data
.
MenuUrl
;
this
.
objOption
.
MenuIcon
=
res
.
Data
.
MenuIcon
;
this
.
objOption
.
MenuLevel
=
res
.
Data
.
MenuLevel
;
this
.
objOption
.
MenuType
=
res
.
Data
.
MenuType
;
this
.
objOption
.
SortNum
=
res
.
Data
.
SortNum
;
this
.
objOption
.
Status
=
res
.
Data
.
Status
;
})
this
.
optionTitle
=
"修改菜单信息"
}
else
{
this
.
optionTitle
=
"新增菜单"
this
.
objOption
.
MenuId
=
0
;
this
.
objOption
.
ParentId
=
0
;
this
.
objOption
.
MenuName
=
""
;
this
.
objOption
.
MenuUrl
=
""
;
this
.
objOption
.
MenuIcon
=
""
;
this
.
objOption
.
MenuLevel
=
-
1
;
this
.
objOption
.
MenuType
=
-
1
;
this
.
objOption
.
SortNum
=
0
;
this
.
objOption
.
Status
=
0
;
}
},
//关闭弹窗
closeSaveForm
()
{
this
.
$emit
(
'close'
)
this
.
persistent
=
false
},
//保存菜单
saveSystemMenu
()
{
this
.
saveLoading
=
true
saveMenu
(
this
.
objOption
).
then
(
res
=>
{
this
.
saveLoading
=
false
this
.
$q
.
notify
({
icon
:
'iconfont icon-chenggong'
,
color
:
'accent'
,
timeout
:
2000
,
message
:
'数据保存成功!'
,
position
:
'top'
})
this
.
$emit
(
"success"
)
this
.
closeSaveForm
()
}).
catch
(()
=>
{
this
.
saveLoading
=
false
})
}
},
}
</
script
>
src/pages/system/menu.vue
View file @
6f08a49d
...
...
@@ -58,7 +58,7 @@
getMenuTypeList
,
getMenuLevelList
}
from
'../../api/system/index'
import
menuForm
from
'../../components/system/menu
/menu
-form'
import
menuForm
from
'../../components/system/menu-form'
export
default
{
meta
:
{
title
:
"菜单管理"
...
...
src/pages/system/role.vue
0 → 100644
View file @
6f08a49d
<
template
>
<div
class=
"page-body"
>
<div
class=
"page-search row items-center"
>
<div
class=
"col row wrap q-mr-lg q-col-gutter-md"
>
<div
class=
"col-3"
>
<q-input
@
change=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.MenuName"
label=
"菜单名称"
/>
</div>
<div
class=
"col-3"
>
<q-input
@
change=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.MenuUrl"
label=
"菜单地址"
/>
</div>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
standout=
"bg-primary text-white"
v-model=
"msg.MenuType"
:options=
"MenuTypeOpts"
emit-value
map-options
label=
"菜单类型"
/>
</div>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
standout=
"bg-primary text-white"
v-model=
"msg.MenuLevel"
:options=
"MenuLevelOpts"
emit-value
map-options
label=
"菜单等级"
/>
</div>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
standout=
"bg-primary text-white"
v-model=
"msg.Status"
:options=
"ShowOpts"
emit-value
map-options
label=
"状态"
/>
</div>
</div>
<div
class=
"page-option"
>
<q-btn
color=
"accent"
class=
"q-mr-md"
icon=
"add"
label=
"新增菜单"
@
click=
"EditMenu(null)"
/>
</div>
</div>
<div
class=
"page-content"
>
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-tow-column-table"
separator=
"none"
title=
"菜单信息"
:data=
"data"
:columns=
"columns"
row-key=
"name"
>
<template
v-slot:body-cell-Status=
"props"
>
<q-td
:props=
"props"
>
<q-badge
:color=
"props.value==1?'negative':'primary'"
:label=
"props.value==0?'正常':'禁用'"
/>
</q-td>
</
template
>
<
template
v-slot:bottom
>
<q-pagination
class=
"full-width justify-end"
v-model=
"msg.pageIndex"
color=
"primary"
:max=
"pageCount"
:input=
"true"
@
input=
"changePage"
/>
</
template
>
<
template
v-slot:body-cell-optioned=
"props"
>
<q-td
:props=
"props"
>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"编辑"
@
click=
"EditMenu(props.row)"
/>
</q-td>
</
template
>
</q-table>
<menu-form
v-if=
"persistent_menu"
:save-obj=
"menuObjOption"
@
close=
"closeMenuSaveForm"
@
success=
"refreshPage"
>
</menu-form>
</div>
</div>
</template>
<
script
>
import
{
getMenuPage
,
getMenuTypeList
,
getMenuLevelList
}
from
'../../api/system/index'
import
menuForm
from
'../../components/system/menu-form'
export
default
{
meta
:
{
title
:
"菜单管理"
},
components
:
{
menuForm
,
},
data
()
{
return
{
currentUrl
:
""
,
columns
:
[{
name
:
'MenuId'
,
label
:
'菜单编号'
,
field
:
'MenuId'
,
align
:
'left'
},
{
name
:
'MenuName'
,
required
:
true
,
label
:
'菜单名称'
,
align
:
'left'
,
field
:
row
=>
row
.
MenuName
},
{
name
:
'MenuUrl'
,
label
:
'菜单地址'
,
field
:
'MenuUrl'
,
align
:
'left'
},
{
name
:
'MenuTypeStr'
,
label
:
'菜单类型'
,
field
:
'MenuTypeStr'
,
align
:
'left'
},
{
name
:
'MenuLevel'
,
label
:
'菜单等级'
,
field
:
'MenuLevel'
,
align
:
'left'
},
{
name
:
'MenuIcon'
,
label
:
'图标'
,
field
:
'MenuIcon'
,
align
:
'left'
},
{
name
:
'SortNum'
,
label
:
'排序'
,
field
:
'SortNum'
,
align
:
'left'
},
{
name
:
'CreateTimeStr'
,
label
:
'创建时间'
,
field
:
'CreateTimeStr'
,
align
:
'left'
},
{
name
:
'Status'
,
label
:
'状态'
,
align
:
'left'
,
field
:
'Status'
},
{
name
:
'optioned'
,
label
:
'操作'
,
field
:
'MenuId'
}
],
data
:
[],
loading
:
true
,
ShowOpts
:
[{
label
:
'全部'
,
value
:
'-1'
},
{
label
:
'正常'
,
value
:
'0'
},
{
label
:
'删除'
,
value
:
'1'
}
],
//菜单等级
MenuLevelOpts
:
[],
//菜单类型
MenuTypeOpts
:
[],
msg
:
{
pageIndex
:
1
,
pageSize
:
12
,
rowsPerPage
:
12
,
MenuName
:
""
,
MenuUrl
:
""
,
MenuLevel
:
-
1
,
MenuType
:
-
1
,
Status
:
"-1"
,
},
pageCount
:
0
,
persistent_menu
:
false
,
menuObjOption
:
null
,
persistentExamine_menu
:
false
}
},
mounted
()
{
this
.
initData
();
this
.
currentUrl
=
this
.
$route
.
path
this
.
getmenulist
()
},
methods
:
{
//初始化下拉框
initData
()
{
this
.
MenuTypeOpts
=
getMenuTypeList
();
this
.
MenuLevelOpts
=
getMenuLevelList
();
},
//重新查询
resetSearch
()
{
this
.
msg
.
pageIndex
=
1
;
this
.
getmenulist
();
},
//翻页
changePage
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getmenulist
()
},
//获取菜单分页列表
getmenulist
()
{
this
.
loading
=
true
;
getMenuPage
(
this
.
msg
).
then
(
res
=>
{
this
.
loading
=
false
this
.
data
=
res
.
Data
.
PageData
this
.
pageCount
=
res
.
Data
.
PageCount
}).
catch
(()
=>
{
this
.
loading
=
false
})
},
//刷新页面
refreshPage
()
{
if
(
!
this
.
menuObjOption
)
{
this
.
msg
.
pageIndex
=
1
;
this
.
msg
.
MenuName
=
""
;
this
.
msg
.
MenuUrl
=
""
;
this
.
msg
.
MenuLevel
=
-
1
;
this
.
msg
.
MenuType
=
-
1
;
this
.
msg
.
Status
=
"-1"
;
}
this
.
getmenulist
()
},
//新增修改菜单
EditMenu
(
obj
)
{
if
(
obj
)
{
this
.
menuObjOption
=
obj
}
else
{
this
.
menuObjOption
=
null
}
this
.
persistent_menu
=
true
},
//关闭弹窗
closeMenuSaveForm
()
{
this
.
persistent_menu
=
false
this
.
persistentExamine_menu
=
false
}
}
}
</
script
>
<
style
lang=
"sass"
>
@import
url('~assets/css/table.sass');
</
style
>
src/router/routes.js
View file @
6f08a49d
...
...
@@ -32,6 +32,11 @@ const routes = [{
component
:
()
=>
import
(
"pages/system/menu.vue"
)
},
{
path
:
"/system/role"
,
component
:
()
=>
import
(
"pages/system/role.vue"
)
},
{
path
:
"/test"
,
component
:
()
=>
...
...
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