css 수정 홈 api payment api

This commit is contained in:
focp212@naver.com
2025-09-16 15:24:33 +09:00
parent e0c5ae67c6
commit 3897d3d54b
15 changed files with 564 additions and 3 deletions

View File

@@ -0,0 +1,28 @@
import {
API_BASE_URL,
API_URL_KEY,
} from './../constants/url';
/* Payment Management = 결제관리 API */
export const API_URL_PAYMENT = {
paymentnotificationData: () => {
// POST: 결제데이터 통보 조회
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/payment/notification/data`;
},
paymentNonCard: () => {
// POST: 카드외 결제수단 수수료 및 정산주기 조회
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/payment/non-card`;
},
paymentInstallment: () => {
// POST: 가맹점 분담 무이자 정보 조회
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/payment/installment`;
},
paymentInstallmentDetail: () => {
// POST: 가맹점 분담 무이자 상세 조회
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/payment/installment/detail`;
},
paymentCard: () => {
// POST: 카드 결제수단 수수료 및 정산주기 조회
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/payment/card`;
},
};

View File

@@ -51,7 +51,10 @@ main {
padding-bottom: env(safe-area-inset-bottom) !important;
}
.bottomsheet{
padding-bottom: env(safe-area-inset-bottom) !important;
padding-bottom: calc(26px + env(safe-area-inset-bottom));
}
.bottomsheet.banner{
padding-bottom: calc(0px + env(safe-area-inset-bottom));
}
.apply-row.bottom-padding{
bottom: calc(70px + env(safe-area-inset-bottom)) !important;