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

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

parent 5938e8cd
...@@ -26,7 +26,7 @@ function handleGetPackageList() { ...@@ -26,7 +26,7 @@ function handleGetPackageList() {
packageTableIsLoading.value = true packageTableIsLoading.value = true
const domain = 'equity' const domain = 'equity'
fetchGetOrderList<OrderItem[]>(domain, paginationData) fetchGetOrderList<OrderItem[]>(domain, { pagingInfo: paginationData })
.then((res) => { .then((res) => {
if (res.code !== 0) return if (res.code !== 0) return
......
...@@ -25,7 +25,7 @@ watch([() => paginationData.pageNo, () => paginationData.pageSize], handleGetRec ...@@ -25,7 +25,7 @@ watch([() => paginationData.pageNo, () => paginationData.pageSize], handleGetRec
function handleGetRechargeList() { function handleGetRechargeList() {
rechargeTableIsLoading.value = true rechargeTableIsLoading.value = true
const domain = 'point' const domain = 'point'
fetchGetOrderList<OrderItem[]>(domain, paginationData) fetchGetOrderList<OrderItem[]>(domain, { pagingInfo: paginationData })
.then((res) => { .then((res) => {
if (res.code !== 0) return 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