gaoluyang
2 天以前 e44ce4501ea4cf30e79b2181fda84cd3faf8ec8a
src/views/salesManagement/receiptPaymentHistory/index.vue
@@ -10,10 +10,10 @@
          :prefix-icon="Search"
        />
      </el-form-item>
      <el-form-item label="合同号">
      <el-form-item label="客户合同号">
        <el-input
          v-model="searchForm.customerContractNo"
          placeholder="输入合同号"
          placeholder="输入客户合同号"
          @change="handleQuery"
          clearable
          :prefix-icon="Search"
@@ -56,7 +56,7 @@
        :isShowSummary="isShowSummarySon"
        :summaryMethod="summarizeMainTable1"
        :tableLoading="tableLoading"
        :total="total"
        :total="page.total"
        @pagination="pagination"
        @selection-change="handleSelectionChange"
      ></PIMTable>
@@ -101,7 +101,7 @@
  {
    label: "回款金额(元)",
    prop: "receiptPaymentAmount",
    width:150,
    width:200,
    formatData: (params) => {
      return params ? parseFloat(params).toFixed(2) : 0;
    },
@@ -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;
  });
};
// 子表合计方法