| 123456789101112131415161718 |
- import https from "@/plugins/luch-request_0.0.7/request";
- /** *
- * 分类及花材数据(库存预警、库存管理共用这个接口)
- * @parmas py 花材拼音
- * @parmas type 库存预警时,固定为waring,其他情况不传或者传空
- */
- export const getProductDataApi = data => {
- return https.get("/item/index", data);
- };
- /** *
- * 供应商花材列表(进店开单) 【采购开单】
- */
- export const getGhsProductList = data => {
- return https.get('/item/ghs-item', data)
- }
|