fix : 修改所属公司选择框bug

This commit is contained in:
2024-06-16 19:50:17 +08:00
parent d1a8077eea
commit 63107ece02
2 changed files with 22 additions and 11 deletions

View File

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