From a072f4e1ead66a93e0ade8439bc1fd44f936cc2a Mon Sep 17 00:00:00 2001
From: 曹睿 <360930172@qq.com>
Date: 星期一, 07 七月 2025 13:59:25 +0800
Subject: [PATCH] feat: 来票台账添加附件补充
---
src/views/basicData/supplierManage/index.vue | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/src/views/basicData/supplierManage/index.vue b/src/views/basicData/supplierManage/index.vue
index 63a179c..1412e8e 100644
--- a/src/views/basicData/supplierManage/index.vue
+++ b/src/views/basicData/supplierManage/index.vue
@@ -28,14 +28,13 @@
</div>
<div class="table_list">
<PIMTable
+ rowKey="id"
:column="tableColumn"
:tableData="tableData"
:page="page"
:isSelection="true"
- :handleSelectionChange="handleSelectionChange"
+ @selection-change="handleSelectionChange"
:tableLoading="tableLoading"
- @pagination="pagination"
- :total="total"
></PIMTable>
</div>
<el-dialog
@@ -299,8 +298,8 @@
const page = reactive({
current: 1,
size: 10,
+ total: 0,
});
-const total = ref(0);
// 鐢ㄦ埛淇℃伅琛ㄥ崟寮规鏁版嵁
const operationType = ref("");
@@ -358,7 +357,7 @@
listSupplier({ ...searchForm.value, ...page }).then((res) => {
tableLoading.value = false;
tableData.value = res.data.records;
- total.value = res.data.total;
+ page.total = res.data.total;
});
};
const upload = reactive({
--
Gitblit v1.9.3