This commit is contained in:
xiaojunnuo
2024-11-12 10:12:10 +08:00
parent ae072929df
commit 6841c2328e
9 changed files with 65 additions and 30 deletions
@@ -139,7 +139,9 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat
width: 300,
cellRender: ({ row, value }) => {
debugger;
return <router-link to={{ path: "/certd/pipeline/detail", query: { id: row.pipelineId } }}>{value}</router-link>;
return (
<router-link to={{ path: "/certd/pipeline/detail", query: { id: row.pipelineId, editMode: false, historyId: row.id } }}>{value}</router-link>
);
}
}
},
@@ -5,6 +5,7 @@ export type StatusEnumItem = {
icon: string;
spin?: boolean;
iconSpin?: boolean;
iconColor?: string;
};
export type StatusEnumType = {
[key: string]: StatusEnumItem;