mirror of
https://github.com/YunaiV/ruoyi-vue-pro.git
synced 2025-10-30 01:57:37 +08:00
7 lines
249 B
JavaScript
7 lines
249 B
JavaScript
const { http } = uni.$u
|
|
|
|
// 获得订单交易分页
|
|
export const getOrderPage = params => http.get('/trade/order/page', { params })
|
|
// 获得交易订单详情
|
|
export const getOrderDetail = params => http.get('/trade/order/get-detail', { params })
|