iam-audit-external-project-service.js 596 B

12345678910111213141516171819202122232425
  1. import axios from '@/common/services/axios-instance'
  2. class AuditExternalProjectService {
  3. // 获取审计发现数据
  4. getAuditFindData(params) {
  5. return axios({
  6. url: 'api/xcoa-mobile/v1/iamexternalfind/externalFindBean',
  7. method: 'post',
  8. data: params,
  9. }).then((res) => {
  10. return res
  11. })
  12. }
  13. // 获取自动编号
  14. getAutoBh(params) {
  15. return axios({
  16. url: 'api/xcoa-mobile/v1/iamexternalfind/nextNumber',
  17. method: 'post',
  18. data: params,
  19. }).then((res) => {
  20. return res
  21. })
  22. }
  23. }
  24. export default new AuditExternalProjectService()