12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- import req from '@/utils/request.js'
- /**
- * 查询用户序检信息
- * @param userId
- */
- export function getProcessInspecionList(data) {
- return req.request({
- url: '/business/inspecion/list',
- method: 'post',
- data: data
- })
- }
- /**
- * 查询产品技术负责人
- */
- export function getProductConsult(data) {
- return req.request({
- url: '/business/inspecion/getProductConsult',
- method: 'post',
- data: data
- })
- }
- /**
- * 结束报工保存
- * @param {Object} data
- */
- export function saveProcessInspecion(data) {
- return req.request({
- url: '/business/inspecion/saveProcessInspecion',
- method: 'post',
- data: data
- })
- }
- /**
- * 结束报工保存
- * @param {Object} data
- */
- export function saveOutsourcedInspecion(data) {
- return req.request({
- url: '/business/inspecion/saveOutsourcedInspecion',
- method: 'post',
- data: data
- })
- }
- /**
- * 查询咨询信息
- */
- export function selectInspecion(data) {
- return req.request({
- url: '/business/inspecion/selectInspecion',
- method: 'post',
- data: data
- })
- }
- /**
- * 查询箱号绑定批次
- */
- export function getCarrierInfo(data) {
- return req.request({
- url: '/business/inspecion/getCarrierInfo',
- method: 'post',
- data: data
- })
- }
- /**
- * 根据箱号查询批
- */
- export function getLotOutsourcedInfo(data) {
- return req.request({
- url: '/business/inspecion/getLotOutsourcedInfo',
- method: 'post',
- data: data
- })
- }
- /**
- * 根据箱号查询批次信息
- */
- export function getLotInfo(data) {
- return req.request({
- url: '/business/inspecion/getLotInfo',
- method: 'post',
- data: data
- })
- }
|