From b6818d430e711f5022145c89bdc3a30dd9d4ee38 Mon Sep 17 00:00:00 2001 From: Esacpe <1113279529@qq.com> Date: Tue, 15 Jul 2025 20:46:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ChooseList/ChooseMarks/index.vue | 22 ++++++++++--------- src/components/ChooseList/ChooseQt/index.vue | 16 +++++++------- src/components/ChooseList/ChooseXs/index.vue | 6 ++--- src/components/ChooseList/ChooseZdr/index.vue | 16 +++++++------- .../PreliminaryExcavations/index.vue | 5 +---- .../myControl/components/addBkdx.vue | 3 ++- 6 files changed, 34 insertions(+), 34 deletions(-) diff --git a/src/components/ChooseList/ChooseMarks/index.vue b/src/components/ChooseList/ChooseMarks/index.vue index 8ee3391..621aa74 100644 --- a/src/components/ChooseList/ChooseMarks/index.vue +++ b/src/components/ChooseList/ChooseMarks/index.vue @@ -10,7 +10,7 @@ 重置 -
+
@@ -31,8 +31,8 @@ { emits("update:modelValue", false); }; const reset = () => { - listQuery.value = { pageCurrent: 1, pageSize: 20, }; + listQuery.value = { pages: 1, size: 20, }; getListData(); }; @@ -116,20 +117,21 @@ const onComfirm = () => { closed(); }; /** - * pageSize 改变触发 + * size 改变触发 */ const handleSizeChange = (currentSize) => { - listQuery.value.pageSize = currentSize; + listQuery.value.size = currentSize; getListData(); }; /** * 页码改变触发 */ const handleCurrentChange = (currentPage) => { - listQuery.value.pageCurrent = currentPage; + listQuery.value.pages = currentPage; getListData(); }; const getListData = () => { + keyVal.value++; loading.value = true; const params = { ...listQuery.value, bqLb:'02',} qcckGet(params,'/mosty-gsxt/tbGsxtBqgl/selectPage').then(res=>{ @@ -153,7 +155,7 @@ function multipleUser() { } const handleFilter = () => { - listQuery.value.pageCurrent = 1; + listQuery.value.pages = 1; getListData(); }; diff --git a/src/components/ChooseList/ChooseQt/index.vue b/src/components/ChooseList/ChooseQt/index.vue index 4840e09..00596af 100644 --- a/src/components/ChooseList/ChooseQt/index.vue +++ b/src/components/ChooseList/ChooseQt/index.vue @@ -54,14 +54,14 @@