my-fillin.api.js 539 B

12345678910
  1. const http = uni.$u.http
  2. // 我的安全事件填报
  3. export const list = (params, custom = {}) => http.post('app/safeThing/mySafeThingsPageList', params, { custom: { ...custom, type: 'json' } })
  4. // 获取安全事件-处理情况
  5. export const getInfoDispose = (id, custom = {}) => http.get('app/safeThing/getDispose', {params: {safeThingsId: id}}, { custom })
  6. // 获取安全事件处理流程
  7. export const getInfoStreamList = (id, custom = {}) => http.get('app/safeThing/safeThingsStreamList', {params: {safeThingsId: id}}, { custom })