负责人选择组件
This commit is contained in:
+4
-1
@@ -13,6 +13,8 @@ const addUser = (params)=>postAction("/sys/user/add",params);
|
||||
const editUser = (params)=>putAction("/sys/user/edit",params);
|
||||
const queryUserRole = (params)=>getAction("/sys/user/queryUserRole",params);
|
||||
const getUserList = (params)=>getAction("/sys/user/page",params);
|
||||
// 获取全部用户列表
|
||||
const getAllUserList = (params) => getAction("/sys/user/list", params);
|
||||
const frozenBatch = (params)=>putAction("/sys/user/frozenBatch",params);
|
||||
//验证用户是否存在
|
||||
const checkOnlyUser = (params)=>getAction("/sys/user/checkOnlyUser",params);
|
||||
@@ -23,7 +25,7 @@ const resetUserPassword = (params) => putAction('',params)
|
||||
|
||||
//权限管理
|
||||
const addPermission= (params)=>postAction("/sys/permission/add",params);
|
||||
const editPermission= (params)=>putAction("/sys/permission/edit",params);
|
||||
const editPermission= (params)=>postAction("/sys/permission/edit",params);
|
||||
const getPermissionList = (params)=>getAction("/sys/permission/page",params);
|
||||
const getSystemMenuList = (params)=>getAction("/sys/permission/getSystemMenuList",params);
|
||||
const getSystemSubmenu = (params)=>getAction("/sys/permission/getSystemSubmenu",params);
|
||||
@@ -109,6 +111,7 @@ export {
|
||||
editUser,
|
||||
queryUserRole,
|
||||
getUserList,
|
||||
getAllUserList,
|
||||
queryall,
|
||||
frozenBatch,
|
||||
checkOnlyUser,
|
||||
|
||||
Reference in New Issue
Block a user