From a07e80e60cf8f1e20cbace9bca45643f2358b1ad Mon Sep 17 00:00:00 2001 From: "focp212@naver.com" Date: Wed, 15 Oct 2025 17:57:27 +0900 Subject: [PATCH] test --- src/entities/transaction/model/types.ts | 15 ++++++++------- src/pages/support/faq/list-page.tsx | 2 +- src/pages/support/qna/list-page.tsx | 2 +- .../transaction/all-transaction/list-page.tsx | 10 ++++++---- src/shared/ui/assets/css/style-fix.css | 3 ++- 5 files changed, 18 insertions(+), 14 deletions(-) diff --git a/src/entities/transaction/model/types.ts b/src/entities/transaction/model/types.ts index f2901f0..33b47ea 100644 --- a/src/entities/transaction/model/types.ts +++ b/src/entities/transaction/model/types.ts @@ -1,4 +1,4 @@ -import { DefaulResponsePagination, DefaultRequestPagination, SuccessResult } from '@/entities/common/model/types'; +import { DefaulResponsePagination, DefaultRequestPagination, SortTypeKeys, SuccessResult } from '@/entities/common/model/types'; export enum CancelTabKeys { All = 'All', @@ -225,20 +225,21 @@ export interface AllTransactionListSummaryResponse { totalTransactionAmount: number; }; export interface AllTransactionListParams { - moid: string; - tid: string; + moid?: string; + tid?: string; fromDate: string; toDate: string; - stateCode: string; - serviceCode: string; + stateCode?: string; + serviceCode?: string; minAmount?: number; maxAmount?: number; - dateCl: string; - goodsName: string; + dateCl?: string; + goodsName?: string; cardCode?: string; bankCode?: string; searchCl?: AllTransactionSearchCl; searchValue?: string; + sortType?: SortTypeKeys; page?: DefaultRequestPagination; }; diff --git a/src/pages/support/faq/list-page.tsx b/src/pages/support/faq/list-page.tsx index 389afcd..f0d5112 100644 --- a/src/pages/support/faq/list-page.tsx +++ b/src/pages/support/faq/list-page.tsx @@ -123,7 +123,7 @@ export const FaqListPage = () => { { getFaqList() } -
+
-
+