给客户和仓库增加权限控制

This commit is contained in:
季圣华
2021-04-30 17:49:03 +08:00
parent 831b13fee1
commit ccf9739210
10 changed files with 60 additions and 67 deletions

View File

@@ -139,6 +139,7 @@ const checkFunction = (params)=>getAction("/function/checkIsNameExist",params);
const addSystemConfig = (params)=>postAction("/systemConfig/add",params);
const editSystemConfig = (params)=>putAction("/systemConfig/update",params);
const checkSystemConfig = (params)=>getAction("/systemConfig/checkIsNameExist",params);
const getCurrentSystemConfig = (params)=>getAction("/systemConfig/getCurrentInfo",params);
//用户|角色|模块关系
const addUserBusiness = (params)=>postAction("/userBusiness/add",params);
const editUserBusiness = (params)=>putAction("/userBusiness/update",params);
@@ -254,6 +255,7 @@ export {
addSystemConfig,
editSystemConfig,
checkSystemConfig,
getCurrentSystemConfig,
addUserBusiness,
editUserBusiness,
checkUserBusiness,