iam-ic-rectify-feedback-service.js 518 B

123456789101112131415161718192021
  1. import axios from '@/common/services/axios-instance'
  2. class IamIcRectifyFeedbackServices {
  3. // 获取字典值
  4. getDictValue(key) {
  5. return axios({
  6. url: 'api/xcoa-mobile/v1/iam-law/dictionary?key=' + key,
  7. method: 'get',
  8. })
  9. }
  10. // 获取字典值
  11. getSetpInfo(instId, activeStepId) {
  12. return axios({
  13. url: `api/xcoa-mobile/v1/icrectfeedback/getSetpInfo?instId=${instId}&activeStepId=${activeStepId}`,
  14. method: 'get',
  15. })
  16. }
  17. }
  18. export default new IamIcRectifyFeedbackServices()