page page updated

This commit was merged in pull request #71.
This commit is contained in:
victorAnumudu
2024-09-04 20:59:50 +01:00
parent 45d5bd870f
commit 5a7adf4537
11 changed files with 182 additions and 76 deletions
+9
View File
@@ -67,6 +67,15 @@ export const getLoanDetail = (postData:any) => {
return getAuxEnd(`/loan/loandetail?uid=${reqData?.uid}&application_uid=${reqData?.application_uid}`, null)
}
// FUNCTION TO GET PAYMENT DETAILS
export const getPaymentDetails = (postData:any) => {
let reqData = {
uid: localStorage.getItem('uid'),
...postData
}
return getAuxEnd(`/payment/status?uid=${reqData?.uid}&reference=${reqData?.reference}`, null)
}
// FUNCTION TO ADD CARD
export const addCard = (postData:any) => {
let reqData = {