index.js 501 B

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