gaoluyang
2025-12-25 879249b34397ba1dc2be1ff1c7afd158d35ec340
src/views/salesManagement/receiptPaymentHistory/index.vue
@@ -52,11 +52,11 @@
        :column="tableColumn"
        :tableData="tableData"
        :page="page"
        :isSelection="true"
        :isSelection="false"
        :isShowSummary="isShowSummarySon"
        :summaryMethod="summarizeMainTable1"
        :tableLoading="tableLoading"
        :total="total"
        :total="page.total"
        @pagination="pagination"
        @selection-change="handleSelectionChange"
      ></PIMTable>
@@ -139,6 +139,7 @@
const page = reactive({
  current: 1,
  size: 100,
   total: 0,
});
const total = ref(0);
@@ -174,7 +175,7 @@
  receiptPaymentHistoryListPage({ ...rest, ...page }).then((res) => {
    tableLoading.value = false;
    tableData.value = res.records;
    total.value = res.total;
      page.total = res.total;
  });
};
// 子表合计方法