Commit fc6952f6 authored by shirlyn.guo's avatar shirlyn.guo 👌🏻

chore: 订单管理无法获取下一页

parent 5938e8cd
......@@ -26,7 +26,7 @@ function handleGetPackageList() {
packageTableIsLoading.value = true
const domain = 'equity'
fetchGetOrderList<OrderItem[]>(domain, paginationData)
fetchGetOrderList<OrderItem[]>(domain, { pagingInfo: paginationData })
.then((res) => {
if (res.code !== 0) return
......
......@@ -25,7 +25,7 @@ watch([() => paginationData.pageNo, () => paginationData.pageSize], handleGetRec
function handleGetRechargeList() {
rechargeTableIsLoading.value = true
const domain = 'point'
fetchGetOrderList<OrderItem[]>(domain, paginationData)
fetchGetOrderList<OrderItem[]>(domain, { pagingInfo: paginationData })
.then((res) => {
if (res.code !== 0) return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment