fix ui dashboard & event

This commit is contained in:
2025-01-28 21:26:33 +08:00
parent 93874478ac
commit 22fa1e8bcd
18 changed files with 137 additions and 96 deletions

View File

@@ -26,6 +26,7 @@ import {
AdminInvestasi_ComponentCekBuktiTransfer,
} from "../../_component";
import { adminInvestasi_funGetAllTransaksiById } from "../../fun";
import { AdminColor } from "@/app_modules/_global/color/color_pallet";
export function AdminInvestasi_ViewDaftarTransaksi({
dataTransaksi,
@@ -167,7 +168,7 @@ export function AdminInvestasi_ViewDaftarTransaksi({
<Stack spacing={"xs"} h={"100%"}>
<ComponentAdminGlobal_TitlePage
name="Transkasi"
color="gray.4"
color={AdminColor.softBlue}
component={<Group>
<ActionIcon
size={"lg"}
@@ -232,7 +233,7 @@ export function AdminInvestasi_ViewDaftarTransaksi({
</Group>
</Group> */}
<Paper p={"md"} withBorder shadow="lg" h={"80vh"}>
<Paper bg={AdminColor.softBlue} p={"md"} shadow="lg" h={"80vh"}>
<ScrollArea w={"100%"} h={"90%"}>
<Table
verticalSpacing={"xl"}
@@ -245,28 +246,28 @@ export function AdminInvestasi_ViewDaftarTransaksi({
<thead>
<tr>
<th>
<Center>Nama Investor</Center>
<Center c={AdminColor.white}>Nama Investor</Center>
</th>
<th>
<Center>Nama Bank</Center>
<Center c={AdminColor.white}>Nama Bank</Center>
</th>
<th>
<Center>Jumlah Investasi</Center>
<Center c={AdminColor.white}>Jumlah Investasi</Center>
</th>
<th>
<Center>Lembar Terbeli</Center>
<Center c={AdminColor.white}>Lembar Terbeli</Center>
</th>
<th>
<Center>Tanggal</Center>
<Center c={AdminColor.white}>Tanggal</Center>
</th>
<th>
<Center>Status</Center>
<Center c={AdminColor.white}>Status</Center>
</th>
<th>
<Center>Bukti Transfer</Center>
<Center c={AdminColor.white}>Bukti Transfer</Center>
</th>
<th>
<Center>Aksi</Center>
<Center c={AdminColor.white}>Aksi</Center>
</th>
</tr>
</thead>