| | |
| | | }) |
| | | } |
| | | |
| | | // 国标码查报备 |
| | | export function getReportByGb(gb) { |
| | | return request({ |
| | | url: '/report/list/' + gb, |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | // 新增报备 |
| | | export function addReport(data) { |
| | | return request({ |
| | |
| | | // 审核 |
| | | export function audit(data) { |
| | | return request({ |
| | | url: '/report/auditing/', |
| | | method: 'get', |
| | | url: '/report/auditing', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | |
| | | method: 'delete' |
| | | }) |
| | | } |
| | | export function delReportBath(ids) { |
| | | return request({ |
| | | url: '/report/batch', |
| | | method: 'delete', |
| | | data:ids |
| | | }) |
| | | } |
| | | |
| | | // 获取同一批次提交的报备 |
| | | export function getTogether(pid) { |
| | | return request({ |
| | | url: '/report/getTogether/' + pid, |
| | | method: 'get' |
| | | }) |
| | | } |