disbursement list , detail, upload batch

This commit is contained in:
Narul Hidayah
2025-04-11 18:19:27 +07:00
parent 1674aeed85
commit 0de97696fd
10 changed files with 773 additions and 1 deletions

View File

@ -6,6 +6,7 @@ interface apiConfigProps {
service_wallet: string;
transaction: string;
nationality: string;
service_disbursement: string;
}
const API_URL = import.meta.env.VITE_APP_API_URL;
@ -18,6 +19,7 @@ const apiConfig: apiConfigProps = {
service_transaction: `${API_URL}/tt`,
service_wallet: `${API_URL}/w`,
transaction: `${API_URL}/x`,
service_disbursement: `${API_URL}/s`,
nationality: `https://tpay.shiblysolution.id/cms/api/mobile/list-country/
`
};