| | |
| | | params: params |
| | | }) |
| | | } |
| | | |
| | | |
| | | export function getRawFlow(params) { |
| | | return request({ |
| | | url: '/hazmat-flow/list', |
| | | method: 'get', |
| | | params: params |
| | | }) |
| | | } |
| | | |
| | | export function getRawList(params) { |
| | | return request({ |
| | | url: '/hazmat/hazmatCollect', |
| | | method: 'get', |
| | | params: params |
| | | }) |
| | | } |
| | | |
| | | export function disCardRaw(data) { |
| | | return request({ |
| | | url: '/hazmat/hazmatDiscard/' + data, |
| | | method: 'post', |
| | | }) |
| | | } |
| | | |
| | | export function getAllRawFlow(params) { |
| | | return request({ |
| | | url: '/hazmat-flow/getAllHazmatFlowByHazmatId', |
| | | method: 'get', |
| | | params: params |
| | | }) |
| | | } |
| | | |
| | | export function getAllRawFlowByFlowId(params) { |
| | | return request({ |
| | | url: '/hazmat-flow/getAllHazmatFlowById', |
| | | method: 'get', |
| | | params: params |
| | | }) |
| | | } |
| | | |
| | | |