1234567891011121314151617181920212223 |
- import request from "@/utils/request";
- //获取物料信息
- export function getMaterialInfo(code: string) {
- return request({
- url: `/api/v1/plan/requisition/queryReceive/${code}`,
- method: "get",
- });
- }
- //获取配置后信息
- export function getPrintInfo(data: any) {
- return request({
- url: `/api/v1/plan/requisition/handleExcel`,
- method: "post",
- data,
- });
- }
- export function queryBomChildrenInfo(params: object) {
- return request({
- url: "/api/v1/base/materialBom/list",
- method: "post",
- data: params,
- });
- }
|