refactor: 更新API接口与数据结构,统一分页返回格式

This commit is contained in:
Ray.Hao
2026-01-09 00:07:25 +08:00
parent 4a8efc770e
commit a5885d0710
64 changed files with 1085 additions and 910 deletions

View File

@@ -8,7 +8,7 @@
/**
* 表单类型枚举
*/
export const FormTypeEnum: Record<string, OptionType> = {
export const FormTypeEnum: Record<string, OptionItem> = {
INPUT: { value: 1, label: "输入框" },
SELECT: { value: 2, label: "下拉框" },
RADIO: { value: 3, label: "单选框" },
@@ -24,7 +24,7 @@ export const FormTypeEnum: Record<string, OptionType> = {
/**
* 查询类型枚举
*/
export const QueryTypeEnum: Record<string, OptionType> = {
export const QueryTypeEnum: Record<string, OptionItem> = {
/** 等于 */
EQ: { value: 1, label: "=" },