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