fix: 【BPM 工作流】修复流程表单操作列宽,消除控制台警告

This commit is contained in:
子夜
2025-05-24 16:53:59 +08:00
parent 7762059537
commit e3948bbc50
3 changed files with 5 additions and 4 deletions

View File

@@ -105,7 +105,7 @@ export function useGridColumns<T = BpmFormApi.FormVO>(
{
field: 'operation',
title: '操作',
minWidth: 150,
minWidth: 200,
align: 'center',
fixed: 'right',
cellRender: {

View File

@@ -17,7 +17,7 @@ defineOptions({ name: 'BpmFormEditor' });
const props = defineProps<{
copyId?: number | string;
id?: number;
id?: number | string;
type: 'copy' | 'create' | 'edit';
}>();