audit-projectcost-service.js 319 B

123456789101112
  1. import axios from '@/common/services/axios-instance'
  2. class AuditPorjectCostService {
  3. // 新建前数据校验
  4. beforeCreateCheck(id) {
  5. return axios({
  6. url: `api/xcoa-mobile/v1/iamprojectcost/beforeCreateCheck?projectId=` + id,
  7. })
  8. }
  9. }
  10. export default new AuditPorjectCostService()