| | |
| | | method: 'get', |
| | | params |
| | | }) |
| | | } |
| | | } |
| | | // 查询检验申请单列表 |
| | | export function selectInspectsList(params){ |
| | | return request({ |
| | | url: '/inspection/selectInspectsList', |
| | | method: 'get', |
| | | params |
| | | }) |
| | | } |
| | | // 查询所有报检 |
| | | export function selectAll(params){ |
| | | return request({ |
| | | url: '/inspection/selectAll', |
| | | method: 'get', |
| | | params |
| | | }) |
| | | } |
| | | // 新增检验单 |
| | | export function addInspect(data){ |
| | | return request({ |
| | | url:'/inspection/addInspect', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |
| | | //检验单详情 |
| | | export function selectInspectsListById(params){ |
| | | return request({ |
| | | url: '/inspection/selectInspectsListById', |
| | | method: 'get', |
| | | params |
| | | }) |
| | | } |
| | | //选择责任项目检验人 |
| | | export function selectUser(params){ |
| | | return request({ |
| | | url: '/inspection/selectUser', |
| | | method: 'get', |
| | | params |
| | | }) |
| | | } |