chenrui
2025-06-09 bf6d13fdf5ba7dd4dd2533e62f95f529b272a31e
src/views/salesManagement/receiptPayment/index.vue
@@ -133,7 +133,7 @@
const tableLoading = ref(false)
const page = reactive({
  current: 1,
  size: 10,
  size: 100,
})
const total = ref(0)
@@ -178,9 +178,9 @@
  page.current = 1
  getList()
}
const paginationChange = ({ current, limit }) => {
  page.current = current;
  page.size = limit;
const paginationChange = (obj) => {
  page.current = obj.page;
  page.size = obj.limit;
  getList()
}
const getList = () => {