Ben Lin
2024-10-17 07895c65b99fa43f8e54f5054bd8351a71158143
src/api/tigerapi/model/basModel.ts
@@ -112,6 +112,7 @@
  url: string;
  action: string;
  isStep: boolean;
  isCustEl: boolean;
}
export type MaterialInfoPageListGetResultModel = BasicFetchResult<MaterialInfoListItem>;
@@ -137,7 +138,7 @@
  KeyFieldValues: (val: string, id: string) => {};
  GetTitle: (type: string | undefined) => {};
  GetCrudColSlots: () => [];
  nodeChange: ({}) => void;
  nodeChange: ({}) => Promise<any>;
  CreateIcon: (params: Recordable<any>) => string;
  SelectNode: (selectedNodes: Ref<any[]>) => {};
  GetNavItems: (type: string) => NavItem[];
@@ -157,4 +158,5 @@
  GetCustData: () => {};
  GetRightMenuList: (node: EventDataNode, ...args) => ContextMenuItem[];
  GetNewRow: (type: string) => {};
  InitCrudFormSchema: (type: string, ...args) => {};
}