修复了 标准入库流程--除了发起节点,,后续所有节点,下载附件报程序异常(本地)问题

This commit is contained in:
zhaokaiyao@91isoft.com
2021-08-05 13:52:56 +08:00
parent 304365dcec
commit bd4daea81b
@@ -862,8 +862,13 @@
},
methods: {
downloadFile (fileType) {
//文件id中出现了','字符,去除掉
if(fileType === 'fbgbjbd'){
window.location.href = '/api/att/attFile/downloadFileForSar?fileId=' + this.fbgbjbdFileId
if(this.fbgbjbdFileId.search(',')){
this.fbgbjbdFileId=this.fbgbjbdFileId.replace(",","");
console.log(this.fbgbjbdFileId);
}
window.location.href = '/api/att/attFile/downloadFileForSar?fileId=' + this.fbgbjbdFileId
}else if(fileType === 'xgd'){
window.location.href = '/api/att/attFile/downloadFileForSar?fileId=' + this.xgdFileId
}else if(fileType === 'bpg'){
@@ -964,6 +969,7 @@
this.caFileId = processForm.ca
this.zbjbdFileId = processForm.zbjbd
this.getFormFieldList(processForm)
console.log(processForm);
}
}).catch(e => {
})