修复切换登录状态后用户身份未更新的bug

This commit is contained in:
唐明明
2021-09-16 13:54:37 +08:00
parent b12465f611
commit 6a9b350413
14 changed files with 4555 additions and 4038 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
}