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])