Files
wangziqi 72e2110987
Some checks failed
Synchronize to Gitee / repo-sync (push) Has been cancelled
Typos Checking / Spell Check with Typos (push) Has been cancelled
chore: initial commit
2026-06-23 11:56:23 +08:00

36 lines
2.7 KiB
TypeScript

// 表单模板
export const AddCustomFormUrl = '/custom-form/add'; // 创建自定义表单
export const UpdateCustomFormUrl = '/custom-form/update'; // 更新自定义表单
export const GetCustomFormUrl = '/custom-form/get'; // 自定义表单详情
export const GetCustomFormAdminUrl = '/custom-form/admin/get'; // 获取表单管理员
export const SaveCustomFormAdminUrl = '/custom-form/admin/set'; // 表单管理员
export const RelateCustomFormMemberUrl = '/custom-form/role/user/add'; // 添加表单成员
export const GetCustomFormRoleUsersUrl = '/custom-form/role/users'; // 获取角色用户列表
export const GetCustomFormRoleListUrl = '/custom-form/role/list'; // 获取表单角色tab
export const GetCustomFormRoleUserDeptTreeUrl = '/custom-form/role/user/dept/tree'; // 获取表单角色部门用户树
export const GetCustomFormRoleUserRoleTreeUrl = '/custom-form/role/user/role/tree'; // 获取表单角色树
export const RemoveCustomFormMemberUrl = '/custom-form/role/user/remove'; // 移除表单成员
export const GetCustomFormListUrl = '/custom-form/list'; // 获取表单模板列表
export const DeleteCustomFormUrl = '/custom-form/delete'; // 删除表单模板
export const EnableCustomFormUrl = '/custom-form/enable'; // 开启表单模板
export const DisableCustomFormUrl = '/custom-form/disable'; // 关闭表单模板
export const GetCustomFormOptionsUrl = '/custom-form/option'; // 自定义表单选项列表
// 表单数据
export const AddCustomFormDataUrl = '/custom-form/data/add'; // 添加自定义表单数据
export const GetCustomFormDataPageUrl = '/custom-form/data/page'; // 自定义表单数据列表
export const BatchUpdateCustomFormDataUrl = '/custom-form/data/batch/update'; // 批量更新自定义表单数据
export const BatchDeleteCustomFormDataUrl = '/custom-form/data/batch/delete'; // 批量删除自定义表单数据
export const UpdateCustomFormDataUrl = '/custom-form/data/update'; // 更新自定义表单数据
export const GetCustomFormDataDetailUrl = '/custom-form/data/get'; // 获取自定义表单数据详情
export const DeleteCustomFormDataUrl = '/custom-form/data/delete'; // 删除自定义表单数据
// 导入
export const PreCheckCustomFormImportUrl = '/custom-form/data/import/pre-check'; // 自定义表单预检查导入
export const DownloadCustomFormTemplateUrl = '/custom-form/data/template/download'; // 下载自定义表单模板
export const ImportCustomFormUrl = '/custom-form/data/import'; // 导入自定义表单
// 导出
export const CustomFormExportAllUrl = '/custom-form/data/export-all'; // 自定义表单导出全量
export const CustomFormExportSelectedUrl = '/custom-form/data/export-select'; // 自定义表单导出选中