feat: 完成角色表、权限表、社会用户表的页面设计

This commit is contained in:
2024-07-12 19:01:00 +08:00
parent 3a7d8c051f
commit 74951b822f

View File

@@ -36,7 +36,7 @@ const handleAdd = async (fields: API.UserInfo) => {
/** /**
* 更新节点 * 更新节点
* @param fields * @param fields
*/
const handleUpdate = async (fields: FormValueType) => { const handleUpdate = async (fields: FormValueType) => {
const hide = message.loading('正在配置'); const hide = message.loading('正在配置');
try { try {
@@ -60,7 +60,7 @@ const handleUpdate = async (fields: FormValueType) => {
return false; return false;
} }
}; };
*/
/** /**
* 删除节点 * 删除节点
* @param selectedRows * @param selectedRows
@@ -121,6 +121,7 @@ const User: React.FC<unknown> = () => {
}, },
{ {
title: '密码', title: '密码',
required: true,
dataIndex: 'password', dataIndex: 'password',
valueType: 'text', valueType: 'text',
}, },