2026-04-28 f84e425bb9debb5f2af8e417bf07d2a2b0077609
src/views/financialManagement/revenueManagement/index.vue
@@ -51,6 +51,8 @@
          size: pagination.pageSize,
          total: pagination.total,
        }"
        :isShowSummary="true"
        :summaryMethod="summarizeMainTable"
        @selection-change="handleSelectionChange"
        @pagination="changePage"
      >
@@ -74,6 +76,7 @@
      </PIMTable>
    </div>
    <Modal ref="modalRef" @success="getTableData"></Modal>
    <!--  todo 附件预览相关 -->
    <FileListDialog 
      ref="fileListRef" 
      v-model="fileListDialogVisible"
@@ -202,6 +205,11 @@
  ]
);
// 表格合计:收入金额
const summarizeMainTable = (param) => {
  return proxy.summarizeTable(param, ["incomeMoney"]);
};
// 多选后做什么
const handleSelectionChange = (selectionList) => {
  multipleList.value = selectionList;