客户标签打印

This commit is contained in:
2022-11-22 10:24:40 +08:00
parent cc4c84fdc3
commit b87294992d
2 changed files with 129 additions and 1 deletions

View File

@@ -255,4 +255,22 @@ export const stPrint = (box_jo) => request({
data: {
box_jo: box_jo
}
})
/**
* 客户标签打印
*/
// 1.1木箱信息查询
export const customerInfo = (box_no) => request({
url:'api/pda/print/customerInfo',
data: {
box_no: box_no
}
})
// 1.1木箱打印
export const customerPrint = (box_no) => request({
url:'api/pda/print/customerPrint',
data: {
box_no: box_no
}
})