Commit c98a3e51 authored by 前端-钟卫鹏's avatar 前端-钟卫鹏

feat: 新增商品选择货品接口添加新字段

parent 0398520d
......@@ -54,7 +54,12 @@ const SelectGoodsForm: React.FC<{}> = (props) => {
const fetchData = (params: any) => {
return new Promise((resolve, reject) => {
let obj = { ...params, brandId: selectBrandId || productInfoByEdit?.brand?.id, customerCategoryId: selectCategoryId || productInfoByEdit?.customerCategory?.id }
let obj = {
...params,
brandId: selectBrandId || productInfoByEdit?.brand?.id,
customerCategoryId: selectCategoryId || productInfoByEdit?.customerCategory?.id,
ids: 99
}
getProductGoodsGetGoodsList(obj).then(res => {
resolve(res.data)
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment