Develop Fitur
This commit is contained in:
parent
e2205aa260
commit
9fc1ee2fc4
|
@ -566,7 +566,7 @@ export const DetailUser = observer(() => {
|
||||||
<Text strong>Foto Toko</Text>
|
<Text strong>Foto Toko</Text>
|
||||||
<Text>
|
<Text>
|
||||||
<Row>
|
<Row>
|
||||||
{store.authentication.listImage.map(
|
{store.authentication.listImage?store.authentication.listImage.map(
|
||||||
(item, index) => (
|
(item, index) => (
|
||||||
<Image
|
<Image
|
||||||
key={index}
|
key={index}
|
||||||
|
@ -578,7 +578,7 @@ export const DetailUser = observer(() => {
|
||||||
style={{ width: "10vw", marginRight: 15 }}
|
style={{ width: "10vw", marginRight: 15 }}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
)}
|
) : ""}
|
||||||
</Row>
|
</Row>
|
||||||
</Text>
|
</Text>
|
||||||
</Col>
|
</Col>
|
||||||
|
@ -608,7 +608,7 @@ export const DetailUser = observer(() => {
|
||||||
<Text strong>Foto Toko</Text>
|
<Text strong>Foto Toko</Text>
|
||||||
<Text>
|
<Text>
|
||||||
<Row>
|
<Row>
|
||||||
{store.authentication.listImage.map((item, index) => (
|
{store.authentication.listImage?store.authentication.listImage.map((item, index) => (
|
||||||
<Image
|
<Image
|
||||||
key={index}
|
key={index}
|
||||||
src={
|
src={
|
||||||
|
@ -618,7 +618,7 @@ export const DetailUser = observer(() => {
|
||||||
}
|
}
|
||||||
style={{ width: "10vw", marginRight: 15 }}
|
style={{ width: "10vw", marginRight: 15 }}
|
||||||
/>
|
/>
|
||||||
))}
|
)):""}
|
||||||
</Row>
|
</Row>
|
||||||
</Text>
|
</Text>
|
||||||
</Col>
|
</Col>
|
||||||
|
@ -811,10 +811,11 @@ export const DetailUser = observer(() => {
|
||||||
>
|
>
|
||||||
<List.Item.Meta
|
<List.Item.Meta
|
||||||
className={["cariparkir-container"].join(" ")}
|
className={["cariparkir-container"].join(" ")}
|
||||||
title={item.buyer}
|
title={item.name}
|
||||||
description={
|
description={
|
||||||
<div style={{}}>
|
<div style={{}}>
|
||||||
<p>
|
<p>
|
||||||
|
<small>Pembeli : {item.buyer}</small> <br />
|
||||||
<small>Price : {item.price}</small> <br />
|
<small>Price : {item.price}</small> <br />
|
||||||
<small>
|
<small>
|
||||||
Tujuan : {item.transaction_destination}
|
Tujuan : {item.transaction_destination}
|
||||||
|
|
|
@ -434,6 +434,7 @@ export const Membership = observer(() => {
|
||||||
description={
|
description={
|
||||||
<div style={{}}>
|
<div style={{}}>
|
||||||
<p>
|
<p>
|
||||||
|
<small>Username : {item.username}</small> <br />
|
||||||
<small>Role : {item.roles?.name}</small> <br />
|
<small>Role : {item.roles?.name}</small> <br />
|
||||||
<small>Saldo : {item.coa?.amount}</small> <br />
|
<small>Saldo : {item.coa?.amount}</small> <br />
|
||||||
<Button
|
<Button
|
||||||
|
|
Loading…
Reference in New Issue
Block a user