反馈联调和职位列表交互bug

This commit is contained in:
2026-05-18 18:33:46 +08:00
parent 14c7660770
commit 39bf8548df
9 changed files with 755 additions and 26 deletions
+18
View File
@@ -0,0 +1,18 @@
import request from '@/utils/request'
import type { ApiResult } from '@/api/auth'
/** 提交反馈参数 */
export interface UserFeedbackParams {
/** 反馈类型 */
type: number
/** 反馈内容 */
content: string
}
/**
* 提交反馈
* POST /UserFeedbackParams
*/
export function userFeedback(data: UserFeedbackParams) {
return request.post<any, ApiResult>('/user/feedback', data)
}