Files
new_wms_admin/src/api/modules/test.ts
2025-09-16 16:38:30 +08:00

49 lines
1.5 KiB
TypeScript

//测试
// import http from "@/api";
// import { ResPage } from "@/api/interface/index";
//列表
export const getBoxMarkListApi = () => {
return {
totalCount: 1,
isSuccess: true,
message: "Success",
status: 200,
data: [
{
id: 11573,
detailsId: 30059,
billNo: "RKRW00011573",
status: "部分入库",
sourceBillNo: "SCHB00054706",
type: "生产入库",
supplier: "",
org: "深圳市元创时代科技有限公司",
specifications: "",
materialNumber: "G01-11-579493",
materialName: "",
factoryPrice: 0,
stock: "wms仓库02",
accruedQty: 50,
receiveQty: 20,
realityQty: 20,
receiver: "尹芳丽wms",
receiveTime: "2025-08-13 17:45:39",
shelfer: "尹芳丽wms",
shelfTime: "2025-08-13 17:46:23",
remark: null,
createTime: "2025-08-13 15:12:30",
isRepeal: "否",
saleBillNo: " "
}
]
};
//http.post<ResPage<any>>(`BoxMark/GetList`, params);
};
// //生成箱唛
// export const getMaterialListApi = (speci: any) => {
// console.log(speci);
// // return http.get<any>(`SysConfig/GetMaterialList?speci=${encodeURIComponent(speci)}`);
// return [];
// };