新增耗材盘点
This commit is contained in:
@@ -330,3 +330,33 @@ export function stockInOut(data) {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增盘点耗材
|
||||
* @returns
|
||||
*/
|
||||
export function tbConCheck(data) {
|
||||
return request({
|
||||
url: `/api/tbConCheck`,
|
||||
method: "post",
|
||||
data: {
|
||||
shopId: localStorage.getItem("shopId"),
|
||||
...data
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询盘点耗材
|
||||
* @returns
|
||||
*/
|
||||
export function tbConCheckGet(data) {
|
||||
return request({
|
||||
url: `/api/tbConCheck`,
|
||||
method: "get",
|
||||
params: {
|
||||
shopId: localStorage.getItem("shopId"),
|
||||
...data
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user