fix: draft hover

This commit is contained in:
dap
2025-07-18 12:40:34 +08:00
parent 0d47da06e9
commit 10c0298bb7

View File

@@ -62,7 +62,7 @@ const gridOptions: VxeGridProps = {
id: 'workflow-leave-index', id: 'workflow-leave-index',
cellClassName: ({ row }) => { cellClassName: ({ row }) => {
// 草稿状态 可点击 // 草稿状态 可点击
if (row.status === 'draft') { if (row.status !== 'draft') {
return 'cursor-pointer'; return 'cursor-pointer';
} }
}, },