This commit is contained in:
2021-09-16 15:48:16 +08:00
19 changed files with 13657 additions and 8197 deletions

View File

@@ -87,6 +87,21 @@ const managesGoodsCreate = (data) => {
})
}
// 发布产品类目
const managesCategory = () => {
return request({
url: 'manages/goods/category'
})
}
// 发布产品类目类型配置
const managesCreate = (data) => {
return request({
url: 'manages/goods/create',
data
})
}
export {
mall,
list,
@@ -97,5 +112,7 @@ export {
managesGoodsOnsale,
managesGoodsOffsale,
managesGoodsCreateBefore,
managesGoodsCreate
managesGoodsCreate,
managesCategory,
managesCreate
}