123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- import req from '@/utils/request.js'
- /**
- * 查询用户序检信息
- * @param userId
- */
- export function getProcessInspecionList(data) {
- return req.request({
- url: '/business/inspecion/list',
- method: 'post',
- data: data
- })
- }
- /**
- * 查询用户序检信息
- * @param userId
- */
- export function getOutsourcedInspection(data) {
- return req.request({
- url: '/business/inspecion/outsourcedlist',
- 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 selectOutsourcedInspecion(data) {
- return req.request({
- url: '/business/inspecion/selectOutsourcedInspecion',
- method: 'post',
- data: data
- })
- }
- /**
- * 查询箱号绑定批次
- */
- export function getCarrierInfo(data) {
- return req.request({
- url: '/business/inspecion/getCarrierInfo',
- method: 'post',
- data: data
- })
- }
- export function getCarrierInfoProcess(data) {
- return req.request({
- url: '/business/inspecion/getCarrierInfoProcess',
- method: 'post',
- data: data
- })
- }
- /**
- * 保存质检箱信息
- */
- export function saveInspectionCarrier(data) {
- return req.request({
- url: '/business/inspecion/saveInspectionCarrier',
- 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
- })
- }
- // 删除序检
- export function delProcessInspection(id) {
- return req.request({
- url: '/business/inspecion/' + id,
- method: 'delete'
- })
- }
|