fix: get models in cloning

This commit is contained in:
jialin
2026-02-10 11:33:24 +08:00
parent 8779b79bbf
commit 9418e5b635
6 changed files with 14 additions and 14 deletions
+8 -8
View File
@@ -1,12 +1,12 @@
import { StatusType } from './types';
import { PageActionType, StatusType } from './types';
export enum PageAction {
CREATE = 'create',
UPDATE = 'update',
VIEW = 'view',
EDIT = 'edit',
COPY = 'copy'
}
export const PageAction: Record<string, PageActionType> = {
CREATE: 'create',
UPDATE: 'update',
VIEW: 'view',
EDIT: 'edit',
COPY: 'copy'
};
export const StatusColorMap: Record<
StatusType,