Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yudao-cloud
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
hblj
yudao-cloud
Commits
b1e10dc5
提交
b1e10dc5
authored
3月 15, 2019
作者:
YunaiV
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
数据字典的前端学习~
上级
e7d0e3d1
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
366 行增加
和
1 行删除
+366
-1
router.config.js
admin-web/config/router.config.js
+5
-0
dictionary-list.json
admin-web/mock/geographic/dictionary-list.json
+23
-0
menu.js
admin-web/src/locales/zh-CN/menu.js
+2
-1
dictionaryList.js
admin-web/src/models/admin/dictionaryList.js
+65
-0
DictionaryList.js
admin-web/src/pages/Admin/DictionaryList.js
+247
-0
DictionaryList.less
admin-web/src/pages/Admin/DictionaryList.less
+15
-0
admin.js
admin-web/src/services/admin.js
+9
-0
没有找到文件。
admin-web/config/router.config.js
浏览文件 @
b1e10dc5
...
@@ -51,6 +51,11 @@ export default [
...
@@ -51,6 +51,11 @@ export default [
name
:
'role-list'
,
name
:
'role-list'
,
component
:
'./Admin/RoleList'
,
component
:
'./Admin/RoleList'
,
},
},
{
path
:
'/admin/dictionary-list'
,
name
:
'dictionary-list'
,
component
:
'./Admin/DictionaryList'
,
},
],
],
},
},
{
{
...
...
admin-web/mock/geographic/dictionary-list.json
0 → 100644
浏览文件 @
b1e10dc5
{
"code"
:
0
,
"message"
:
""
,
"data"
:
[
{
"id"
:
1
,
"enumValue"
:
"gender"
,
"value"
:
"1"
,
"displayName"
:
"男"
,
"sort"
:
1
,
"memo"
:
""
},
{
"id"
:
2
,
"enumValue"
:
"gender"
,
"value"
:
"2"
,
"displayName"
:
"女"
,
"sort"
:
2
,
"memo"
:
""
}
]
}
\ No newline at end of file
admin-web/src/locales/zh-CN/menu.js
浏览文件 @
b1e10dc5
export
default
{
export
default
{
// admin
// admin
'menu.admin'
:
'
Admin管理
'
,
'menu.admin'
:
'
系统设置
'
,
'menu.admin.admin-list'
:
'管理员列表'
,
'menu.admin.admin-list'
:
'管理员列表'
,
'menu.admin.resource-list'
:
'资源列表'
,
'menu.admin.resource-list'
:
'资源列表'
,
'menu.admin.role-list'
:
'角色列表'
,
'menu.admin.role-list'
:
'角色列表'
,
'menu.admin.dictionary-list'
:
'数据字典'
,
'menu.home'
:
'首页'
,
'menu.home'
:
'首页'
,
'menu.login'
:
'登录'
,
'menu.login'
:
'登录'
,
'menu.register'
:
'注册'
,
'menu.register'
:
'注册'
,
...
...
admin-web/src/models/admin/dictionaryList.js
0 → 100644
浏览文件 @
b1e10dc5
import
{
message
}
from
'antd'
;
import
{
addResource
,
updateResource
,
deleteResource
,
dictionaryList
}
from
'../../services/admin'
;
export
default
{
namespace
:
'dictionaryList'
,
state
:
{
list
:
[],
},
effects
:
{
*
add
({
payload
},
{
call
,
put
})
{
const
{
callback
,
body
}
=
payload
;
const
response
=
yield
call
(
addResource
,
body
);
if
(
callback
)
{
callback
(
response
);
}
yield
put
({
type
:
'tree'
,
payload
:
{},
});
},
*
update
({
payload
},
{
call
,
put
})
{
const
{
callback
,
body
}
=
payload
;
const
response
=
yield
call
(
updateResource
,
body
);
if
(
callback
)
{
callback
(
response
);
}
yield
put
({
type
:
'tree'
,
payload
:
{},
});
},
*
delete
({
payload
},
{
call
,
put
})
{
const
response
=
yield
call
(
deleteResource
,
payload
);
message
.
info
(
'删除成功!'
);
yield
put
({
type
:
'treeSuccess'
,
payload
:
{
list
:
response
.
data
,
},
});
},
*
tree
({
payload
},
{
call
,
put
})
{
const
{
queryParams
}
=
payload
;
const
response
=
yield
call
(
dictionaryList
,
queryParams
);
message
.
info
(
'查询成功!'
);
yield
put
({
type
:
'treeSuccess'
,
payload
:
{
list
:
response
.
data
,
},
});
},
},
reducers
:
{
treeSuccess
(
state
,
{
payload
})
{
return
{
...
state
,
...
payload
,
};
},
},
};
admin-web/src/pages/Admin/DictionaryList.js
0 → 100644
浏览文件 @
b1e10dc5
/* eslint-disable */
import
React
,
{
PureComponent
,
Fragment
}
from
'react'
;
import
{
connect
}
from
'dva'
;
import
moment
from
'moment'
;
import
{
Card
,
Form
,
Input
,
Select
,
Button
,
Modal
,
message
,
Table
,
Divider
}
from
'antd'
;
import
PageHeaderWrapper
from
'@/components/PageHeaderWrapper'
;
import
styles
from
'./DictionaryList.less'
;
const
FormItem
=
Form
.
Item
;
const
{
Option
}
=
Select
;
const
types
=
[
'未知'
,
'菜单'
,
'链接'
];
// 添加 form 表单
const
CreateForm
=
Form
.
create
()(
props
=>
{
const
{
modalVisible
,
form
,
handleAdd
,
handleModalVisible
,
modalType
,
initValues
}
=
props
;
const
okHandle
=
()
=>
{
form
.
validateFields
((
err
,
fieldsValue
)
=>
{
if
(
err
)
return
;
form
.
resetFields
();
handleAdd
({
fields
:
fieldsValue
,
modalType
,
initValues
,
});
});
};
const
selectStyle
=
{
width
:
200
,
};
const
title
=
modalType
===
'add'
?
'添加一个数据字典'
:
'更新一个数据字典'
;
const
okText
=
modalType
===
'add'
?
'添加'
:
'更新'
;
return
(
<
Modal
destroyOnClose
title
=
{
title
}
visible
=
{
modalVisible
}
onOk
=
{
okHandle
}
okText
=
{
okText
}
onCancel
=
{()
=>
handleModalVisible
()}
>
<
FormItem
labelCol
=
{{
span
:
5
}}
wrapperCol
=
{{
span
:
15
}}
label
=
"菜单展示名"
>
{
form
.
getFieldDecorator
(
'displayName'
,
{
rules
:
[{
required
:
true
,
message
:
'请输入菜单展示名字!'
,
min
:
2
}],
initialValue
:
initValues
.
displayName
,
})(
<
Input
placeholder
=
"请输入"
/>
)}
<
/FormItem
>
<
FormItem
labelCol
=
{{
span
:
5
}}
wrapperCol
=
{{
span
:
15
}}
label
=
"操作"
>
{
form
.
getFieldDecorator
(
'handler'
,
{
initialValue
:
initValues
.
handler
,
})(
<
Input
placeholder
=
"请输入"
/>
)}
<
/FormItem
>
<
FormItem
labelCol
=
{{
span
:
5
}}
wrapperCol
=
{{
span
:
15
}}
label
=
"资源名字"
>
{
form
.
getFieldDecorator
(
'name'
,
{
rules
:
[{
required
:
true
,
message
:
'请输入资源名字!'
}],
initialValue
:
initValues
.
name
,
})(
<
Input
placeholder
=
"请输入"
/>
)}
<
/FormItem
>
<
FormItem
labelCol
=
{{
span
:
5
}}
wrapperCol
=
{{
span
:
15
}}
label
=
"父级资源编号"
>
{
form
.
getFieldDecorator
(
'pid'
,
{
rules
:
[{
required
:
true
,
message
:
'请输入父级编号!'
}],
initialValue
:
initValues
.
pid
,
})(
<
Input
placeholder
=
"请输入"
/>
)}
<
span
>
根节点为
0
<
/span
>
<
/FormItem
>
<
FormItem
labelCol
=
{{
span
:
5
}}
wrapperCol
=
{{
span
:
15
}}
label
=
"排序"
>
{
form
.
getFieldDecorator
(
'sort'
,
{
rules
:
[{
required
:
true
,
message
:
'请输入菜单排序!'
}],
initialValue
:
initValues
.
sort
,
})(
<
Input
placeholder
=
"请输入"
/>
)}
<
/FormItem
>
<
FormItem
labelCol
=
{{
span
:
5
}}
wrapperCol
=
{{
span
:
15
}}
label
=
"资源类型"
>
{
form
.
getFieldDecorator
(
'type'
,
{
rules
:
[{
required
:
true
,
message
:
'请选择资源类型!'
}],
initialValue
:
1
,
})(
<
Select
showSearch
style
=
{
selectStyle
}
placeholder
=
"请选择"
>
<
Option
value
=
{
1
}
>
菜单
<
/Option
>
<
Option
value
=
{
2
}
>
Url
<
/Option
>
<
/Select
>
)}
<
/FormItem
>
<
/Modal
>
);
});
@
connect
(({
dictionaryList
,
loading
})
=>
({
dictionaryList
,
list
:
dictionaryList
.
list
,
loading
:
loading
.
models
.
dictionaryList
,
}))
@
Form
.
create
()
class
DictionaryList
extends
PureComponent
{
state
=
{
modalVisible
:
false
,
modalType
:
'add'
,
//add update
initValues
:
{},
};
componentDidMount
()
{
const
{
dispatch
}
=
this
.
props
;
dispatch
({
type
:
'dictionaryList/tree'
,
payload
:
{},
});
}
handleModalVisible
=
(
flag
,
modalType
,
initValues
)
=>
{
this
.
setState
({
modalVisible
:
!!
flag
,
initValues
:
initValues
||
{},
modalType
:
modalType
||
'add'
,
});
};
handleAdd
=
({
fields
,
modalType
,
initValues
})
=>
{
const
{
dispatch
}
=
this
.
props
;
if
(
modalType
===
'add'
)
{
dispatch
({
type
:
'dictionaryList/add'
,
payload
:
{
body
:
{
...
fields
,
},
callback
:
()
=>
{
message
.
success
(
'添加成功'
);
this
.
handleModalVisible
();
},
},
});
}
else
{
dispatch
({
type
:
'dictionaryList/update'
,
payload
:
{
body
:
{
...
initValues
,
...
fields
,
},
callback
:
()
=>
{
message
.
success
(
'更新成功'
);
this
.
handleModalVisible
();
},
},
});
}
};
handleDelete
(
row
)
{
const
{
dispatch
}
=
this
.
props
;
Modal
.
confirm
({
title
:
`确认删除?`
,
content
:
`
${
row
.
displayName
}
`
,
onOk
()
{
dispatch
({
type
:
'dictionaryList/delete'
,
payload
:
{
id
:
row
.
id
,
},
});
},
onCancel
()
{},
});
}
render
()
{
const
{
list
}
=
this
.
props
;
const
{
modalVisible
,
modalType
,
initValues
}
=
this
.
state
;
const
parentMethods
=
{
handleAdd
:
this
.
handleAdd
,
handleModalVisible
:
this
.
handleModalVisible
,
modalType
,
initValues
,
};
const
columns
=
[
{
title
:
'枚举值'
,
dataIndex
:
'enumValue'
},
{
title
:
'编号'
,
dataIndex
:
'id'
,
},
{
title
:
'小类数值'
,
dataIndex
:
'value'
},
{
title
:
'展示名'
,
dataIndex
:
'displayName'
},
{
title
:
'排序值'
,
dataIndex
:
'sort'
},
{
title
:
'备注'
,
dataIndex
:
'memo'
},
{
title
:
'创建时间'
,
dataIndex
:
'createTime'
,
sorter
:
true
,
render
:
val
=>
<
span
>
{
moment
(
val
).
format
(
'YYYY-MM-DD'
)}
<
/span>
,
},
{
title
:
'操作'
,
render
:
(
text
,
record
)
=>
(
<
Fragment
>
<
a
onClick
=
{()
=>
this
.
handleModalVisible
(
true
,
'update'
,
record
)}
>
更新
<
/a
>
<
Divider
type
=
"vertical"
/>
<
a
className
=
{
styles
.
tableDelete
}
onClick
=
{()
=>
this
.
handleDelete
(
record
)}
>
删除
<
/a
>
<
/Fragment
>
),
},
];
return
(
<
PageHeaderWrapper
>
<
Card
bordered
=
{
false
}
>
<
div
className
=
{
styles
.
tableList
}
>
<
div
className
=
{
styles
.
tableListOperator
}
>
<
Button
icon
=
"plus"
type
=
"primary"
onClick
=
{()
=>
this
.
handleModalVisible
(
true
,
'add'
,
{})}
>
新建
<
/Button
>
<
/div
>
<
/div
>
<
Table
defaultExpandAllRows
=
{
true
}
columns
=
{
columns
}
dataSource
=
{
list
}
rowKey
=
"enumValue"
/>
<
/Card
>
<
CreateForm
{...
parentMethods
}
modalVisible
=
{
modalVisible
}
/
>
<
/PageHeaderWrapper
>
);
}
}
export
default
DictionaryList
;
admin-web/src/pages/Admin/DictionaryList.less
0 → 100644
浏览文件 @
b1e10dc5
@import '~antd/lib/style/themes/default.less';
@import '~@/utils/utils.less';
.tableList {
.tableListOperator {
margin-bottom: 16px;
button {
margin-right: 8px;
}
}
}
.tableDelete {
color: red;
}
admin-web/src/services/admin.js
浏览文件 @
b1e10dc5
...
@@ -122,3 +122,11 @@ export async function roleAssignResource(params) {
...
@@ -122,3 +122,11 @@ export async function roleAssignResource(params) {
},
},
});
});
}
}
// dictionary
export
async
function
dictionaryList
(
params
)
{
return
request
(
`/admin-api/admins/data_dict/list?
${
stringify
(
params
)}
`
,
{
method
:
'GET'
,
});
}
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论