From e093877b02cb5725fef570ee49ca2bca31f51871 Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期五, 11 七月 2025 14:17:06 +0800 Subject: [PATCH] 1.采购台账-销售台账:金额都可以填写,填一个计算另外一个 --- src/views/procurementManagement/paymentHistory/index.vue | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/procurementManagement/paymentHistory/index.vue b/src/views/procurementManagement/paymentHistory/index.vue index 8811129..714c670 100644 --- a/src/views/procurementManagement/paymentHistory/index.vue +++ b/src/views/procurementManagement/paymentHistory/index.vue @@ -46,7 +46,7 @@ @selection-change="handleSelectionChange" :tableLoading="tableLoading" @pagination="pagination" - :total="total" + :total="page.total" ></PIMTable> </div> </div> @@ -69,6 +69,7 @@ { label: "渚涘簲鍟嗗悕绉�", prop: "supplierName", + width:240 }, { label: "浠樻閲戦", @@ -96,6 +97,7 @@ const page = reactive({ current: 1, size: 100, + total: 0, }); const total = ref(0); const { form: searchForm } = useFormData({ @@ -125,7 +127,7 @@ paymentHistoryListPage({ ...rest, ...page }).then((res) => { tableLoading.value = false; tableData.value = res.records; - total.value = res.total; + page.total = res.total; }); }; // 瀛愯〃鍚堣鏂规硶 -- Gitblit v1.9.3