From d9d12f936b0bb5b0e24fad790cc9712634773f0e Mon Sep 17 00:00:00 2001 From: mhy <2624196756@qq.com> Date: Tue, 12 Nov 2024 13:56:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=B0=E5=A2=9E=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E6=8C=87=E5=8D=97=E9=A2=84=E8=A7=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/BasicModal/index.module.css | 2 +- src/pages/User/Main/index.tsx | 1 + src/pages/User/Main/list-item.tsx | 11 ++++++++++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/components/BasicModal/index.module.css b/src/components/BasicModal/index.module.css index 1c8f79b..a2fd72a 100644 --- a/src/components/BasicModal/index.module.css +++ b/src/components/BasicModal/index.module.css @@ -1,7 +1,7 @@ .modalWrap { position: fixed; inset: 0; - z-index: 99; + z-index: 1000; } .modalMask { diff --git a/src/pages/User/Main/index.tsx b/src/pages/User/Main/index.tsx index 36e1946..e70cf89 100644 --- a/src/pages/User/Main/index.tsx +++ b/src/pages/User/Main/index.tsx @@ -46,6 +46,7 @@ const UserMain: React.FC = () => { useEffect(() => { service.applyService.getApplicationList().then((res) => { if (res.code === 200) { + console.log(res) setList(buildTreeByGroupName(res.data.list)); } }); diff --git a/src/pages/User/Main/list-item.tsx b/src/pages/User/Main/list-item.tsx index c15d8f6..59b2698 100644 --- a/src/pages/User/Main/list-item.tsx +++ b/src/pages/User/Main/list-item.tsx @@ -92,9 +92,18 @@ const ListItem: React.FC<{ data: any }> = ({ data }) => { -
+ {/*
{type === "group" ? data?.groupDesc : data?.legalBasis} +
*/} +
+ {type === "group" ?'分组描述:'+ data?.groupDesc : '设定依据:'+data?.legalBasis}
+
+ 申请材料:{data.applicationMaterials || '无'} +
+ {data.handlingGuideAnnex &&}
); }; -- GitLab