From 60916ec07b71d194e72bf938d5c2fc6a256e6293 Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期五, 11 七月 2025 13:44:42 +0800 Subject: [PATCH] 1.采购管理-来票登记,编辑试本次来票金额也可以填写,互相计算 --- src/views/procurementManagement/paymentEntry/index.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/procurementManagement/paymentEntry/index.vue b/src/views/procurementManagement/paymentEntry/index.vue index 5113234..0190dd5 100644 --- a/src/views/procurementManagement/paymentEntry/index.vue +++ b/src/views/procurementManagement/paymentEntry/index.vue @@ -72,7 +72,7 @@ @selection-change="handleSelectionChange" :tableLoading="tableLoading" @pagination="pagination" - :total="total" + :total="page.total" ></PIMTable> </div> <el-dialog @@ -278,8 +278,8 @@ const page = reactive({ current: 1, size: 100, + total: 0, }); -const total = ref(0); // 鐢ㄦ埛淇℃伅琛ㄥ崟寮规鏁版嵁 const operationType = ref(""); @@ -348,7 +348,7 @@ invoiceListPage({ ...searchForm, ...page }).then((res) => { tableLoading.value = false; tableData.value = res.records; - total.value = res.total; + page.total = res.total; }); }; // 琛ㄦ牸閫夋嫨鏁版嵁 -- Gitblit v1.9.3