chenhj
2026-02-05 caff3373cde7f6bdaa139c72c91a3e0d472a7c7f
src/views/financialManagement/loanManagement/index.vue
@@ -64,6 +64,8 @@
          size: pagination.pageSize,
          total: pagination.total,
        }"
        :isShowSummary="true"
        :summaryMethod="summarizeMainTable"
        @selection-change="handleSelectionChange"
        @pagination="changePage"
      >
@@ -191,6 +193,11 @@
  }
);
// 表格合计:借款金额
const summarizeMainTable = (param) => {
  return proxy.summarizeTable(param, ["borrowAmount"]);
};
// 多选后做什么
const handleSelectionChange = (selectionList) => {
  multipleList.value = selectionList;