bug修复

This commit is contained in:
bb_pan 2025-04-08 17:23:14 +08:00
parent a2dd380ea3
commit 9dbb15ab32
1 changed files with 5 additions and 0 deletions

View File

@ -231,6 +231,11 @@ export default {
(response) => { (response) => {
this.equipmentList = response.data.scrapApplyDetailsList this.equipmentList = response.data.scrapApplyDetailsList
this.maForm.bmFileInfos = response.data.fileList this.maForm.bmFileInfos = response.data.fileList
if (this.maForm.bmFileInfos.length > 0) {
this.maForm.bmFileInfos.forEach((item) => {
item.url = process.env.VUE_APP_BASE_API + '/system' + item.url
})
}
this.loading = false this.loading = false
}, },
) )