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',
cellClassName: ({ row }) => {
// 稿
if (row.status === 'draft') {
if (row.status !== 'draft') {
return 'cursor-pointer';
}
},