pay
All checks were successful
Deploy to Server / deploy (push) Successful in 24s

This commit is contained in:
jeremygan2021
2026-02-14 12:27:49 +08:00
parent f7c033021e
commit a5527e8312
3 changed files with 21 additions and 4 deletions

View File

@@ -9,6 +9,7 @@ export const createOrder = (data: any) => request({ url: '/orders/', method: 'PO
export const getOrder = (id: number) => request({ url: `/orders/${id}/` })
export const getMyOrders = () => request({ url: '/orders/' })
export const prepayMiniprogram = (orderId: number) => request({ url: `/orders/${orderId}/prepay_miniprogram/`, method: 'POST' })
export const queryOrderStatus = (orderId: number) => request({ url: `/orders/${orderId}/query_status/` })
// AI Services
export const getServices = () => request({ url: '/services/' })