diff --git a/src/modal/desktop/desktop-finance-records-tab.tsx b/src/modal/desktop/desktop-finance-records-tab.tsx index 0222b0f..80ef588 100644 --- a/src/modal/desktop/desktop-finance-records-tab.tsx +++ b/src/modal/desktop/desktop-finance-records-tab.tsx @@ -93,14 +93,17 @@ function DesktopFinanceRecordsTab({ enabled }: { enabled: boolean }) {
{vm.headers.orderNo}
{vm.headers.amount}
{vm.headers.bonusAmount}
-
{vm.headers.status}
+ {vm.recordType === 'withdraw' ?
{vm.headers.status}
: null}
{item ? ( {item.bonusAmountLabel}
-
- - {item.statusLabel} - -
+ {vm.recordType === 'withdraw' ? ( +
+ + + {item.statusLabel} + + +
+ ) : null} ) : (
-
-
+
+
{vm.headers.orderNo}
{vm.headers.amount}
{vm.headers.bonusAmount}
-
{vm.headers.status}
+ {vm.recordType === 'withdraw' ? ( +
{vm.headers.status}
+ ) : null}
{item ? ( {item.bonusAmountLabel}
-
- - - {item.statusLabel} + {vm.recordType === 'withdraw' ? ( +
+ + + {item.statusLabel} + - -
+
+ ) : null} ) : (