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

  1. import { createAPI } from "@/utils/httpRequest.js";
  2. export const authBusinessSearch = data => createAPI(`auth/authBusinessSearch`,'post',data)
  3. export const authGroupSearch = data => createAPI(`auth/authGroupSearch`,'post',data)
  4. export const authGroupSave = data => createAPI(`auth/authGroupSave`,'post',data)
  5. export const authGroupDelete = data => createAPI(`auth/authGroupDelete`,'post',data)
  6. export const authGroupEdit = data => createAPI(`auth/authGroupEdit`,'post',data)
  7. export const authGroupBusinessSearch = data => createAPI(`auth/authGroupBusinessSearch`,'post',data)
  8. export const getAuthGroupBusinessList = data => createAPI(`auth/getAuthGroupBusinessList`,'post',data)
  9. export const addAuthGroupMemberBusiness = data => createAPI(`auth/addAuthGroupMemberBusiness`,'post',data)
  10. export const deleteAuthGroupMemberBusiness = data => createAPI(`auth/deleteAuthGroupMemberBusiness`,'post',data)
  11. export const authRuleSearch = data => createAPI(`auth/authRuleSearch`,'post',data)
  12. export const authRuleSave = data => createAPI(`auth/authRuleSave`,'post',data)
  13. export const authRuleDelete = data => createAPI(`auth/authRuleDelete`,'post',data)
  14. export const authRuleEdit = data => createAPI(`auth/authRuleEdit`,'post',data)
  15. export const authRuleStepSearch = data => createAPI(`auth/authRuleStepSearch`,'post',data)
  16. export const authRuleStepSave = data => createAPI(`auth/authRuleStepSave`,'post',data)
  17. export const authRuleStepDelete = data => createAPI(`auth/authRuleStepDelete`,'post',data)
  18. export const authRuleStepEdit = data => createAPI(`auth/authRuleStepEdit`,'post',data)
  19. export const getBusinessTypeList = data => createAPI(`auth/getBusinessTypeList`,'post',data)
  20. export const updateAuthHist = data => createAPI(`auth/updateAuthHist`,'post',data)
  21. export const searchAuthInfo = data => createAPI(`auth/searchAuthInfo`,'post',data)