gaoluyang
2025-06-06 89a87a389d1e1a1a363aa39637694c044511af98
src/views/procurementManagement/paymentEntry/index.vue
@@ -14,6 +14,8 @@
    </div>
    <div class="table_list">
      <PIMTable :column="tableColumn" :tableData="tableData" :page="page" :isSelection="true"
                :isShowSummary="isShowSummarySon"
                :summaryMethod="summarizeMainTable1"
        :handleSelectionChange="handleSelectionChange" :tableLoading="tableLoading" @pagination="pagination"
        :total="total"></PIMTable>
    </div>
@@ -201,7 +203,15 @@
  }
})
const { searchForm, form, rules } = toRefs(data)
const isShowSummarySon = ref(true);
// 子表合计方法
const summarizeMainTable1 = (param) => {
  return proxy.summarizeTable(param, ['invoiceAmount', 'paymentAmountTotal', 'unPaymentAmountTotal'], {
    ticketsNum: { noDecimal: true }, // 不保留小数
    futureTickets: { noDecimal: true }, // 不保留小数
  });
};
// 查询列表
/** 搜索按钮操作 */
const handleQuery = () => {