From 69d2a9b135c2a9adaacd7c8c9e62dd75ac76f128 Mon Sep 17 00:00:00 2001 From: dearLin <1261008090@qq.com> Date: Tue, 7 Apr 2026 17:45:42 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E6=98=AF=E5=90=A6=E5=AD=98=E5=9C=A8?= =?UTF-8?q?=E4=B8=8E=E4=BA=BA=E8=B5=84=E4=BB=8E=E7=9B=B8=E5=85=B3=E6=96=B9?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E7=9A=84=E6=97=B6=E5=80=99=E5=8E=BB=E9=99=A4?= =?UTF-8?q?=E6=8E=89=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProjectFilingApplication/Add/index.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/Add/index.js b/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/Add/index.js index 20df2e0..2a1605b 100644 --- a/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/Add/index.js +++ b/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/Add/index.js @@ -1230,11 +1230,13 @@ const UserSelectComponent = (props) => { { title: "姓名", dataIndex: "name" }, { title: "所属部门", dataIndex: "departmentName" }, { title: "所属岗位", dataIndex: "postName" }, - { - title: "是否存在人资系统", - dataIndex: "rzFlag", - render: (_, record) => record.rzFlag === 1 ? "是" : "否", - }, + props.useRz + ? {} + : { + title: "是否存在人资系统", + dataIndex: "rzFlag", + render: (_, record) => record.rzFlag === 1 ? "是" : "否", + }, ]} {...tableProps} />