|
@ -708,7 +708,9 @@ export default { |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
if (code === 0) { |
|
|
if (code === 0) { |
|
|
|
|
|
if(data.imageList.length >0){ |
|
|
|
|
|
data.imageList = data.imageList.map(item=>item.replace('https://www.yantai1s.com','http://172.20.46.177')) |
|
|
|
|
|
} |
|
|
this.eventDetailData = { ...data }; |
|
|
this.eventDetailData = { ...data }; |
|
|
this.pageType = "info"; |
|
|
this.pageType = "info"; |
|
|
} else { |
|
|
} else { |
|
@ -806,7 +808,14 @@ export default { |
|
|
return item; |
|
|
return item; |
|
|
}) |
|
|
}) |
|
|
: []; |
|
|
: []; |
|
|
|
|
|
this.tableData = this.tableData.map(item => { |
|
|
|
|
|
if (item.imageList) { |
|
|
|
|
|
item.imageList = item.imageList.map(imageItem => { |
|
|
|
|
|
return imageItem.replace('https://www.yantai1s.com','http://172.20.46.177'); |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
return item; |
|
|
|
|
|
}); |
|
|
// this.tableData.forEach(item => { |
|
|
// this.tableData.forEach(item => { |
|
|
// if (item.operationType === '2') { |
|
|
// if (item.operationType === '2') { |
|
|
// item.operationTypeShow = '已转需求服务' |
|
|
// item.operationTypeShow = '已转需求服务' |
|
|