From 2a788fff0a588f4ce45ec175e9ba49964c36cc18 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Wed, 23 Oct 2024 22:32:10 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E4=BF=AE=E5=A4=8D=E5=B9=B4=E5=BA=A6?= =?UTF-8?q?=E8=AE=A1=E5=88=92=E9=A1=B9=E7=9B=AE=E8=AF=A6=E6=83=85=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/plan/detail.vue | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/views/plan/detail.vue b/src/views/plan/detail.vue index e1fad5c..3796522 100644 --- a/src/views/plan/detail.vue +++ b/src/views/plan/detail.vue @@ -140,6 +140,11 @@ {{ toThousands(scope.row.specialFundAmount) }} + + + @@ -158,11 +163,23 @@ const loading = ref(false) const formData = ref({}) const table = ref() const route = useRoute() +const router = useRouter() const isEdit = ref(false) const editVisible = ref(false) if(route.query.type=='summary'){ editVisible.value=true } +const handleToProjectDetail=(row)=>{ + router.push({ + name: 'Implementation/detail', + query: { + id: row.requirementId, + projectId: row.projectId, + state: row.state, + step: '10' + } + }) +} const exportTable = () => { const $e = table.value.$el let $table = $e.querySelector('.el-table__fixed')