feat: add REQ0189 frontend party-order list and details pages with mock data and API integration

This commit is contained in:
louiscklaw
2025-06-15 23:08:14 +08:00
parent dfc9873815
commit 77f7211317
24 changed files with 1985 additions and 11 deletions

View File

@@ -84,6 +84,9 @@ export const endpoints = {
changeStatus: (invoiceId: string) => `/api/invoice/changeStatus?invoiceId=${invoiceId}`,
search: '/api/invoice/search',
},
//
//
//
partyEvent: {
list: '/api/party-event/list',
details: '/api/party-event/details',
@@ -92,4 +95,13 @@ export const endpoints = {
update: '/api/party-event/update',
delete: '/api/party-event/delete',
},
partyOrder: {
list: '/api/party-order/list',
profile: '/api/party-order/profile',
update: '/api/party-order/update',
settings: '/api/party-order/settings',
details: '/api/party-order/details',
changeStatus: (partyOrderId: string) =>
`/api/party-order/changeStatus?partyOrderId=${partyOrderId}`,
},
};