You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
633 B
JavaScript
36 lines
633 B
JavaScript
2 years ago
|
/**
|
||
|
* Created by lk on 17/6/4.
|
||
|
*/
|
||
|
import axios from '@/utils/request'
|
||
|
|
||
|
// 获取列表
|
||
|
export function stockQRCodeText(query) {
|
||
|
return axios(
|
||
|
{
|
||
|
url: "/udiwms/stock/qrcode/text/filter",
|
||
|
method: "get",
|
||
|
params: query
|
||
|
}
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export function filterPrint(query) {
|
||
|
return axios(
|
||
|
{
|
||
2 years ago
|
url: "/udiwms/innerOrderPrint/filter",
|
||
2 years ago
|
method: "get",
|
||
|
params: query
|
||
|
}
|
||
|
)
|
||
|
}
|
||
2 years ago
|
export function generateInnerQRCodeText(query) {
|
||
|
return axios({
|
||
|
url: "/udiwms/innerOrderPrint/addOrderPrint",
|
||
|
method: "post",
|
||
|
data: query
|
||
|
});
|
||
|
}
|
||
|
|
||
2 years ago
|
|
||
|
|