You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

41 lines
1.8 KiB

import { createAPI } from "@/utils/httpRequest.js";
export const authBusinessSearch = data => createAPI(`auth/authBusinessSearch`,'post',data)
export const authGroupSearch = data => createAPI(`auth/authGroupSearch`,'post',data)
export const authGroupSave = data => createAPI(`auth/authGroupSave`,'post',data)
export const authGroupDelete = data => createAPI(`auth/authGroupDelete`,'post',data)
export const authGroupEdit = data => createAPI(`auth/authGroupEdit`,'post',data)
export const authGroupBusinessSearch = data => createAPI(`auth/authGroupBusinessSearch`,'post',data)
export const getAuthGroupBusinessList = data => createAPI(`auth/getAuthGroupBusinessList`,'post',data)
export const addAuthGroupMemberBusiness = data => createAPI(`auth/addAuthGroupMemberBusiness`,'post',data)
export const deleteAuthGroupMemberBusiness = data => createAPI(`auth/deleteAuthGroupMemberBusiness`,'post',data)
export const authRuleSearch = data => createAPI(`auth/authRuleSearch`,'post',data)
export const authRuleSave = data => createAPI(`auth/authRuleSave`,'post',data)
export const authRuleDelete = data => createAPI(`auth/authRuleDelete`,'post',data)
export const authRuleEdit = data => createAPI(`auth/authRuleEdit`,'post',data)
export const authRuleStepSearch = data => createAPI(`auth/authRuleStepSearch`,'post',data)
export const authRuleStepSave = data => createAPI(`auth/authRuleStepSave`,'post',data)
export const authRuleStepDelete = data => createAPI(`auth/authRuleStepDelete`,'post',data)
export const authRuleStepEdit = data => createAPI(`auth/authRuleStepEdit`,'post',data)
export const getBusinessTypeList = data => createAPI(`auth/getBusinessTypeList`,'post',data)
export const updateAuthHist = data => createAPI(`auth/updateAuthHist`,'post',data)
export const searchAuthInfo = data => createAPI(`auth/searchAuthInfo`,'post',data)