diff --git a/src/components/BasicModal/index.module.css b/src/components/BasicModal/index.module.css index 1c8f79b2edd971b0556405327f2bdca1ea3b3d0f..a2fd72a503076b28d46304b38933890d95362057 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 36e19466ac77435eb15cfc2043c6315a66786d65..e70cf899d8929ae9ee048de0ee066904b39b5832 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 c15d8f6547001ceef3028329cb375f3d54cf85a1..59b2698593b590c495738935ef80fa3cb9938a6f 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 }) => { -