2025-03-20 13:43:23 +08:00
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
|
|
export function page (pageParam) {
|
|
|
|
return request({
|
2025-04-10 19:24:56 +08:00
|
|
|
url: '/tmerclub_admin/ma/shopWallet/page_all_shop',
|
2025-03-20 13:43:23 +08:00
|
|
|
method: 'get',
|
|
|
|
params: pageParam
|
|
|
|
})
|
|
|
|
}
|
|
|
|
export function soldExcel (pageParam) {
|
|
|
|
return request({
|
2025-04-10 19:24:56 +08:00
|
|
|
url: '/tmerclub_admin/ma/shopWallet/get_shop_wallet_log_form',
|
2025-03-20 13:43:23 +08:00
|
|
|
method: 'get',
|
|
|
|
params: pageParam,
|
|
|
|
responseType: 'blob'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
// get_shop_wallet
|
|
|
|
export function shopWallet (param) {
|
|
|
|
return request({
|
2025-04-10 19:24:56 +08:00
|
|
|
url: '/tmerclub_admin/ma/shopWallet/get_all_shop_wallet',
|
2025-03-20 13:43:23 +08:00
|
|
|
params: param,
|
|
|
|
method: 'get'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
export function pageShopWallet (param) {
|
|
|
|
return request({
|
2025-04-10 19:24:56 +08:00
|
|
|
url: '/tmerclub_admin/ma/shopWallet/page_shop_wallet_by_time',
|
2025-03-20 13:43:23 +08:00
|
|
|
params: param,
|
|
|
|
method: 'get'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
// get_order_detail 订单详情列表
|
|
|
|
export function orderDetaiList (orderId, refundId) {
|
|
|
|
return request({
|
2025-03-24 20:25:22 +08:00
|
|
|
url: '/tmerclub_order/mp/order_item/get_order_detail',
|
2025-03-20 13:43:23 +08:00
|
|
|
method: 'get',
|
|
|
|
params: {
|
|
|
|
orderId,
|
|
|
|
refundId
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|