From f75de810f3d85e4408f4d5be871daf1c3d1d9325 Mon Sep 17 00:00:00 2001 From: pyt <626651354@qq.com> Date: 星期四, 20 三月 2025 16:31:55 +0800 Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/chongzhouResettle --- src/views/applicationBatchList/list.vue | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/views/applicationBatchList/list.vue b/src/views/applicationBatchList/list.vue index 2bc8093..54e71c1 100644 --- a/src/views/applicationBatchList/list.vue +++ b/src/views/applicationBatchList/list.vue @@ -174,6 +174,7 @@ import UploadDialog from "./components/UploadDialog"; import ApprovalDialog from "./components/ApprovalDialog"; import { geTabletList } from "@/api/application-batch"; +import { downLoad } from "@/utils"; export default { name: "ApplicationBatchList", @@ -248,6 +249,14 @@ }; this.handleQuery(); }, + handleSizeChange(size){ + this.queryParams.pageSize = size; + this.getList(); + }, + handleCurrentChange(page){ + this.queryParams.pageNum = page; + this.getList(); + }, /** 新增按钮操作 */ handleAdd() { this.uploadDialogVisible = true; @@ -255,6 +264,7 @@ /** 导入模板下载操作 */ handleImport() { // 实现下载逻辑 + downLoad('/placement-apply/download-template','安置申请表.xlsx') }, /** 统一的查看/详情按钮操作 */ handleView(row, type) { -- Gitblit v1.7.1