修复了 标准入库流程--除了发起节点,,后续所有节点,下载附件报程序异常(本地)问题
This commit is contained in:
@@ -862,8 +862,13 @@
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
downloadFile (fileType) {
|
downloadFile (fileType) {
|
||||||
|
//文件id中出现了','字符,去除掉
|
||||||
if(fileType === 'fbgbjbd'){
|
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'){
|
}else if(fileType === 'xgd'){
|
||||||
window.location.href = '/api/att/attFile/downloadFileForSar?fileId=' + this.xgdFileId
|
window.location.href = '/api/att/attFile/downloadFileForSar?fileId=' + this.xgdFileId
|
||||||
}else if(fileType === 'bpg'){
|
}else if(fileType === 'bpg'){
|
||||||
@@ -964,6 +969,7 @@
|
|||||||
this.caFileId = processForm.ca
|
this.caFileId = processForm.ca
|
||||||
this.zbjbdFileId = processForm.zbjbd
|
this.zbjbdFileId = processForm.zbjbd
|
||||||
this.getFormFieldList(processForm)
|
this.getFormFieldList(processForm)
|
||||||
|
console.log(processForm);
|
||||||
}
|
}
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user