From 201f052fabe30fa77ed97ad0736f88cbd5860c1a Mon Sep 17 00:00:00 2001 From: xingyu4j Date: Thu, 26 Jun 2025 17:57:18 +0800 Subject: [PATCH] fix: bugs --- apps/web-antd/src/views/crm/receivable/data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web-antd/src/views/crm/receivable/data.ts b/apps/web-antd/src/views/crm/receivable/data.ts index 1cfe422c5..648b24393 100644 --- a/apps/web-antd/src/views/crm/receivable/data.ts +++ b/apps/web-antd/src/views/crm/receivable/data.ts @@ -78,7 +78,7 @@ export function useFormSchema(): VbenFormSchema[] { options: contracts.map((item) => ({ label: item.name, value: item.id, - disabled: item.auditStatus === 20, + disabled: item.auditStatus !== 20, })), placeholder: '请选择合同', } as any;