|
|
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
|
|
const qianzhuione = '/prod-api'; // '/prod-api'生产环境 // '/dev-api'开发环境是调后端本地时使用
|
|
|
|
export const url = {
|
|
|
|
wmspda: {
|
|
|
|
system: {
|
|
|
|
test: '/wmspda/system/test',
|
|
|
|
login: qianzhuione + '/auth/login',
|
|
|
|
getInfo: qianzhuione + '/system/user/mobileGetInfo',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
sys: {
|
|
|
|
log: {
|
|
|
|
error: '/wmspda/sys/log/error',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
//正式接口
|
|
|
|
lanjumes: {
|
|
|
|
product: {
|
|
|
|
getInfoByRfid: qianzhuione + '/quality/handCheck/getInfoByRfid',
|
|
|
|
saveQcProCheck: qianzhuione + '/quality/handCheck/saveQcProCheck',
|
|
|
|
queryhandChecklist: qianzhuione + '/quality/handCheck/list',
|
|
|
|
sendDestinationStations: '/api/ReceivingAndFeedingMaterials/sendDestinationStations',
|
|
|
|
palletInforUpdate: '/api/ReceivingAndFeedingMaterials/palletInforUpdate',
|
|
|
|
getDictList: qianzhuione + '/quality/handCheck/getDictList',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
lanjuwms: {
|
|
|
|
product: {
|
|
|
|
// 下线入库
|
|
|
|
OfflineStorage: {
|
|
|
|
queryinformation: qianzhuione + '/wms/put/s/',
|
|
|
|
insertTary: qianzhuione + '/wms/tray/insertTary',
|
|
|
|
deleteTray: qianzhuione + '/wms/tray/deleteTray',
|
|
|
|
handPut: qianzhuione + '/wms/tray/wms/handPut',
|
|
|
|
list: qianzhuione + '/wms/tray/listTary',
|
|
|
|
},
|
|
|
|
// 销售出库/sellout/showProduceCode/ /sellout/s/订单号/产品编码
|
|
|
|
|
|
|
|
SaleOutWH: {
|
|
|
|
// 根据交货单号查询下面的产品编码
|
|
|
|
showProduceCode: qianzhuione + '/wms/sellout/showProduceCode',
|
|
|
|
// 根据订单号和产品编码查询
|
|
|
|
queryinformation: qianzhuione + '/wms/sellout/s',
|
|
|
|
// 扫描箱码接口
|
|
|
|
selloutconntray: qianzhuione + '/wms/selloutconntray',
|
|
|
|
deleteTray: qianzhuione + '/wms/selloutconntray/deleteTray',
|
|
|
|
// 根据交货单号和产品编码查询展示接口
|
|
|
|
showTrays: qianzhuione + '/wms/selloutconntray/showTrays',
|
|
|
|
// 手持出库确认
|
|
|
|
out: qianzhuione + '/wms/selloutconntray/out',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|