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.

30 lines
1.1 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. // 获取审核权限信息
  3. export const getAuthRuleList = data => createAPI(`/authRule/getAuthRuleList`,'POST',data)
  4. // 保存审核权限信息
  5. export const saveAuthRule = data => createAPI(`/authRule/saveAuthRule`,'POST',data)
  6. // 获取审核步骤信息
  7. export const getAuthStepList = data => createAPI(`/authRule/getAuthStepList`,'POST',data)
  8. // 获取用户信息信息
  9. export const getUserList = data => createAPI(`/authRule/getUserList`,'POST',data)
  10. // 获取权限组信息
  11. export const getAuthGroupList = data => createAPI(`/authRule/getAuthGroupList`,'POST',data)
  12. // 新建及保存审批步骤信息
  13. export const saveAuthStep = data => createAPI(`/authRule/saveAuthStep`,'POST',data)
  14. // 删除审批步骤信息
  15. export const deleteAuthStep = data => createAPI(`/authRule/deleteById`,'POST',data)
  16. // 删除审核规则信息
  17. export const deleteAuthRule = data => createAPI(`/authRule/deleteAuthRule`,'POST',data)
  18. // 获取记录类型信息
  19. export const getBusinessRoleList = data => createAPI(`/audit/getBusinessRoleList`,'POST',data)