From 63107ece0243de21d0d622b58fa4957e5b9365f5 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Sun, 16 Jun 2024 19:50:17 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E4=BF=AE=E6=94=B9=E6=89=80=E5=B1=9E?= =?UTF-8?q?=E5=85=AC=E5=8F=B8=E9=80=89=E6=8B=A9=E6=A1=86bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DetailComponent/CompanyPicker.vue | 22 +++++++++---------- .../DetailComponent/SpecialFundDetail.vue | 11 ++++++++++ 2 files changed, 22 insertions(+), 11 deletions(-) diff --git a/src/components/DetailComponent/CompanyPicker.vue b/src/components/DetailComponent/CompanyPicker.vue index af633de..3aafc60 100644 --- a/src/components/DetailComponent/CompanyPicker.vue +++ b/src/components/DetailComponent/CompanyPicker.vue @@ -12,17 +12,17 @@ 全选 不全选 - - - - - - - + + + + + + + + + + + diff --git a/src/components/DetailComponent/SpecialFundDetail.vue b/src/components/DetailComponent/SpecialFundDetail.vue index 56e523f..f9c0298 100644 --- a/src/components/DetailComponent/SpecialFundDetail.vue +++ b/src/components/DetailComponent/SpecialFundDetail.vue @@ -96,6 +96,7 @@ import {downloadFile} from "@/api/project-demand"; const changeDiagram = ref(false) const emit = defineEmits(['getInfo', "update:formData"]) const form = ref() +const router = useRouter() const props = defineProps({ formData: { @@ -194,6 +195,16 @@ const fileTable = reactive({ } ] }) +const handleView=(row)=>{ + router.push({ + name: 'Implementation/detail', + query: { + id: row.requirementId, + projectId: row.projectId, + // step: '40' + } + }) +} const handleDownload = (row) => { downloadFile(row.fileId).then(res => { const blob = new Blob([res])