From 07048abaeb3bf313c063839ca9b10f6893517287 Mon Sep 17 00:00:00 2001 From: wbc <942429426@qq.com> Date: Tue, 18 Mar 2025 15:01:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E4=B8=8B=E8=BD=BD=E4=B8=BAex?= =?UTF-8?q?cel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/projectBoard/unfinishNode/index.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/projectBoard/unfinishNode/index.vue b/src/views/projectBoard/unfinishNode/index.vue index 13b7f28..cc92b4f 100644 --- a/src/views/projectBoard/unfinishNode/index.vue +++ b/src/views/projectBoard/unfinishNode/index.vue @@ -28,7 +28,7 @@ //ts语法 import { queryBoardInfo, projectBoardInfo, timeOutInfo,projectResult} from './api'; import { onMounted, ref } from 'vue'; - import { downloadResource } from "../../../api/common/api" + import { downloadFile } from "@/api/common/api" const tableLoading = ref(false) const dataSource = ref([]); const columns = [ @@ -88,13 +88,13 @@ dataSource.value = res; }; function handleProjectBoardInfo() { - downloadResource("/export/projectBoardInfo", '晾晒看报',{}) + downloadFile("/export/projectBoardInfo", '晾晒看报.xlsx',{}) } function handleTimeOutInfo() { - downloadResource("/export/timeOutInfo", '评分表',{}) + downloadFile("/export/timeOutInfo", '评分表.xlsx',{}) } function handleProjectResult() { - downloadResource("/export/projectResult", '项目成果',{}) + downloadFile("/export/projectResult", '项目成果.xlsx',{}) } //合并行