From 220bf517f1bc9e17d7ecf4e9764c218d45f8b44a Mon Sep 17 00:00:00 2001 From: yujia Date: Fri, 19 Dec 2025 09:28:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=EF=BC=8C=E5=A4=87=E6=A1=88?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E5=B7=B2=E6=8F=90=E4=BA=A4=E4=B8=8D=E5=85=81?= =?UTF-8?q?=E8=AE=B8=E4=BF=AE=E6=94=B9=EF=BC=9B=E9=A1=B9=E7=9B=AE=E7=AE=A1?= =?UTF-8?q?=E7=90=86=EF=BC=8C=E5=8F=98=E6=9B=B4=E9=A1=B9=E7=9B=AE=E4=BA=BA?= =?UTF-8?q?=E5=91=98=E4=B8=8D=E5=85=81=E8=AE=B8=E7=A7=BB=E9=99=A4=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E8=B4=9F=E8=B4=A3=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProjectFilingApplication/List/index.js | 8 ----- .../ProjectFilingApplicationTwo/List/index.js | 36 ++++++++++--------- .../UserChange/index.js | 18 +++++----- 3 files changed, 29 insertions(+), 33 deletions(-) diff --git a/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/List/index.js b/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/List/index.js index e723177..2b49328 100644 --- a/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/List/index.js +++ b/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/List/index.js @@ -90,14 +90,6 @@ function List(props) { > 查看 - {record.projectStatus === 6 && ( <> - {record.projectStatus === 6 && ( - + <> + + + )} ), diff --git a/src/pages/Container/Supervision/ProjectReview/ProjectFilingInformation/UserChange/index.js b/src/pages/Container/Supervision/ProjectReview/ProjectFilingInformation/UserChange/index.js index 3b9e513..a32a308 100644 --- a/src/pages/Container/Supervision/ProjectReview/ProjectFilingInformation/UserChange/index.js +++ b/src/pages/Container/Supervision/ProjectReview/ProjectFilingInformation/UserChange/index.js @@ -94,7 +94,7 @@ function UserChange(props) { { title: "是否为项目负责人", dataIndex: "projectLeader", - render: value => value === 1 ? "是" : "否", + render: (_, record) => record.projectLeader === 1 ? "是" : "否", }, { title: "操作", @@ -109,13 +109,15 @@ function UserChange(props) { > 查看特种证书 - + {record.projectLeader === 0 && ( + + )} ), },