Perbaikan Project PPOB

This commit is contained in:
2022-01-13 14:16:30 +07:00
parent a346ffd8f1
commit d5f3d59a32
12 changed files with 76 additions and 187 deletions

View File

@@ -366,7 +366,7 @@ export const Payback = observer(() => {
}}
>
<List.Item.Meta
className={["cariparkir-container"].join(" ")}
className={[""].join(" ")}
title={item.userData_name}
description={
<div style={{}}>

View File

@@ -304,11 +304,39 @@ export const PaybackCreated = observer(() => {
}}
>
<List.Item.Meta
className={["cariparkir-container"].join(" ")}
className={[""].join(" ")}
title={item.name}
description={
<div style={{}}>
<small>Amount: {item.amount}</small>
<br/>
<div style={{marginTop:5}}>
<small>Status : </small>
<Tag
color={
item.status === 0
? "purple"
: item.status === 1
? "blue"
: item.status === 2
? "warning"
: item.status === 3
? "success"
: "red"
}
>
{item.status === 0
? "Pending"
: item.status === 1
? "Success"
: item.status === 2
? "Failed"
: item.status === 3
? "Approved"
: "Rejected"}
</Tag>
</div>
</div>
}
/>