chenrui
2025-06-09 90716e6624825d2cb7cc0784ede7c535930fee56
src/views/salesManagement/invoiceLedger/index.vue
@@ -203,7 +203,7 @@
const tableLoading = ref(false)
const page = reactive({
  current: 1,
  size: 10,
  size: 100,
})
const total = ref(0)
const fileList = ref([])
@@ -255,9 +255,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 = () => {