【增加】增加仓库分类

This commit is contained in:
cherishsince
2024-05-15 18:16:00 +08:00
parent 986f50c6da
commit 3e0da37e16
3 changed files with 89 additions and 13 deletions

View File

@ -51,7 +51,12 @@ export const ChatRoleApi = {
},
// 获取 my role
getMyRole: async (params: ChatRolePageReqVO) => {
getMyPage: async (params: ChatRolePageReqVO) => {
return await request.get({ url: `/ai/chat-role/my-page`, params})
},
// 获取角色分类
getCategoryList: async () => {
return await request.get({ url: `/ai/chat-role/category-list`})
}
}