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.
28 lines
405 B
JavaScript
28 lines
405 B
JavaScript
/**
|
|
* 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(
|
|
{
|
|
url: "/spms/stockPrint/filter",
|
|
method: "get",
|
|
params: query
|
|
}
|
|
)
|
|
}
|
|
|
|
|