|
|
@ -110,6 +110,34 @@ export default { |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
// 商品档案 列表字典
|
|
|
|
categoryList: function(params) { |
|
|
|
return request({ |
|
|
|
baseURL: '/api', |
|
|
|
url: '/customer/v1/restrictedcategory/categoryList', |
|
|
|
method: 'post', |
|
|
|
data: params, |
|
|
|
headers: { |
|
|
|
'Content-Type': 'application/json' |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
|
|
|
|
// 商品档案 品牌字典
|
|
|
|
brandList: function(params) { |
|
|
|
return request({ |
|
|
|
baseURL: '/api', |
|
|
|
url: '/customer/v1/restrictedbrand/brandList', |
|
|
|
method: 'post', |
|
|
|
data: params, |
|
|
|
headers: { |
|
|
|
'Content-Type': 'application/json' |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
|
|
|
|
// 商品档案 通过sid删除一条或多条记录
|
|
|
|
CommoditydelBySids: function(sid) { |
|
|
|
return request({ |
|
|
|