지급대행 중간커밋
This commit is contained in:
@@ -8,14 +8,14 @@ import {
|
||||
useSetOnBack
|
||||
} from '@/widgets/sub-layout/use-sub-layout';
|
||||
|
||||
export const PaymentAgencyDetailPage = () => {
|
||||
export const PayoutDetailPage = () => {
|
||||
const { navigate } = useNavigate();
|
||||
|
||||
useSetHeaderTitle('지급대행 상세');
|
||||
useSetHeaderType(HeaderType.LeftArrow);
|
||||
useSetFooterMode(false);
|
||||
useSetOnBack(() => {
|
||||
navigate(PATHS.additionalService.paymentAgency.list);
|
||||
navigate(PATHS.additionalService.payout.list);
|
||||
});
|
||||
|
||||
return (
|
||||
@@ -9,7 +9,7 @@ import {
|
||||
useSetOnBack
|
||||
} from '@/widgets/sub-layout/use-sub-layout';
|
||||
|
||||
export const PaymentAgencyListPage = () => {
|
||||
export const PayoutListPage = () => {
|
||||
const { navigate } = useNavigate();
|
||||
|
||||
useSetHeaderTitle('지급대행');
|
||||
@@ -20,10 +20,10 @@ export const PaymentAgencyListPage = () => {
|
||||
});
|
||||
|
||||
const onClickToNavigation = () => {
|
||||
navigate(PATHS.additionalService.paymentAgency.request);
|
||||
navigate(PATHS.additionalService.payout.request);
|
||||
};
|
||||
const onClickToGoDetail = (tid?: string) => {
|
||||
navigate(PATHS.additionalService.paymentAgency.detail, {
|
||||
navigate(PATHS.additionalService.payout.detail, {
|
||||
state: {
|
||||
tid: 'A123456'
|
||||
}
|
||||
@@ -9,14 +9,14 @@ import {
|
||||
useSetOnBack
|
||||
} from '@/widgets/sub-layout/use-sub-layout';
|
||||
|
||||
export const PaymentAgencyRequestPage = () => {
|
||||
export const PayoutRequestPage = () => {
|
||||
const { navigate } = useNavigate();
|
||||
|
||||
useSetHeaderTitle('지급대행 신청');
|
||||
useSetHeaderType(HeaderType.LeftArrow);
|
||||
useSetFooterMode(false);
|
||||
useSetOnBack(() => {
|
||||
navigate(PATHS.additionalService.paymentAgency.list);
|
||||
navigate(PATHS.additionalService.payout.list);
|
||||
});
|
||||
|
||||
return (
|
||||
Reference in New Issue
Block a user