- 新增模板管理模块,包含模板列表和详情页面 - 重构用户认证逻辑,支持用户ID存储和API调用 - 新增排行榜API接口和类型定义 - 更新环境配置,添加开发环境配置 - 优化表格操作钩子,增强类型安全性 - 新增文件上传工具类和验证工具函数 - 更新路由配置,支持模板详情页面导航 - 修复登录表单默认值问题
65 lines
1.6 KiB
TypeScript
65 lines
1.6 KiB
TypeScript
/**
|
|
* Namespace Api
|
|
*
|
|
* All backend api type
|
|
*/
|
|
declare namespace Api {
|
|
namespace Rank {
|
|
/** common params of paginating */
|
|
interface PaginatingCommonParams {
|
|
/** currentPage page number */
|
|
currentPage: number
|
|
/** page pageSize */
|
|
pageSize: number
|
|
/** total count */
|
|
total?: number
|
|
}
|
|
|
|
/** user search params */
|
|
interface UserSearchParams extends PaginatingCommonParams {
|
|
/** competition activity name */
|
|
competitionActivityName?: string
|
|
/** publish status */
|
|
publishStatus?: EnableStatus
|
|
}
|
|
|
|
/** common params of paginating query list data */
|
|
interface PaginatingQueryRecord<T = any> extends PaginatingCommonParams {
|
|
records: T[]
|
|
}
|
|
|
|
/** common search params of table */
|
|
type CommonSearchParams = Pick<Common.PaginatingCommonParams, 'currentPage' | 'pageSize'>
|
|
|
|
/**
|
|
* enable status
|
|
*
|
|
* - "1": enabled
|
|
* - "2": disabled
|
|
*/
|
|
type EnableStatus = '1' | '2'
|
|
|
|
/** question score type */
|
|
type QuestionScoreType = '1' | '2' /** 固定分数 | 答题个数 */
|
|
|
|
/** competition round type */
|
|
type CompetitionRoundType = '1' | '2' /** 题包环节 | 加时环节 */
|
|
|
|
/** common record */
|
|
type CommonRecord<T = any> = {
|
|
/** record id */
|
|
id: number
|
|
/** record creator */
|
|
createBy: string
|
|
/** record create time */
|
|
createTime: string
|
|
/** record updater */
|
|
updateBy: string
|
|
/** record update time */
|
|
updateTime: string
|
|
/** record status */
|
|
status: EnableStatus | null
|
|
} & T
|
|
}
|
|
}
|