gaoluyang
2026-04-21 207c564c2b8d46fd86160c4f6583c2fc9d4a4e5c
src/api/salesManagement/salesLedger.js
@@ -109,3 +109,29 @@
    params: query,
  });
}
// 产品树查询
export function productTreeList(query) {
  return request({
    url: '/basic/product/list',
    method: 'get',
    params: query
  })
}
// 规格型号查询
export function modelList(query) {
  return request({
    url: '/basic/product/modelList',
    method: 'get',
    params: query
  })
}
// 新增发货信息
export function addShippingInfo(data) {
  return request({
    url: "/shippingInfo/add",
    method: "post",
    data,
  });
}