导师相关接口换offer派接口,职位列表和职位详情,Nova聊天侧边栏UI重写

This commit is contained in:
2026-07-03 19:55:53 +08:00
parent a1a27073e4
commit f90c8be2a9
26 changed files with 896 additions and 1129 deletions
+2 -1
View File
@@ -105,9 +105,10 @@ export interface NovaChatResponse {
* Nova AI 对话
* POST /nova-chat/chat
* @param params 对话参数
* @returns 完整响应体 { code, msg, data: { message } }
*/
export function sendNovaChat(params: NovaChatParams) {
return aiService.post<NovaChatResponse>('/nova-chat/chat', params, {
return aiService.post<AiResult<NovaChatResponse>>('/nova-chat/chat', params, {
headers: {
Token: DEFAULT_TOKEN,
},