|
|
|
@ -775,22 +775,21 @@
|
|
|
|
|
this.data.is_health_name = res.name; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.avatarList = res.data.avatar ? res.data.avatar.split(',').map(item => { |
|
|
|
|
this.avatarList = res.data.avatar!=='' ? res.data.avatar.split(',').map(item => { |
|
|
|
|
return {url:item}; |
|
|
|
|
}) : []; |
|
|
|
|
|
|
|
|
|
if((res.data.images && res.data.images.length > 0)){ |
|
|
|
|
this.imagesList = res.data.images.map(item => { |
|
|
|
|
|
|
|
|
|
this.imagesList = res.data.images ? res.data.images.map(item => { |
|
|
|
|
return {url:item}; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}):[]; |
|
|
|
|
|
|
|
|
|
this.videoList = res.data.video ? res.data.video.split(',').map(item => { |
|
|
|
|
this.videoList = res.data.video!=='' ? res.data.video.split(',').map(item => { |
|
|
|
|
return {url:item}; |
|
|
|
|
}):[]; |
|
|
|
|
this.backgroundList = res.data.background_image && res.data.background_image.split(',').map(item => { |
|
|
|
|
return {url:item}; |
|
|
|
|
}); |
|
|
|
|
// this.backgroundList = res.data.background_image && res.data.background_image.split(',').map(item => { |
|
|
|
|
// return {url:item}; |
|
|
|
|
// }); |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
async afterImgRead (event){ |
|
|
|
@ -953,9 +952,9 @@
|
|
|
|
|
this.data.video = this.videoList.map(item => { |
|
|
|
|
return item.url; |
|
|
|
|
}).join(','); |
|
|
|
|
this.data.background_image = this.backgroundList.map(item => { |
|
|
|
|
return item.url; |
|
|
|
|
}).join(','); |
|
|
|
|
// this.data.background_image = this.backgroundList.map(item => { |
|
|
|
|
// return item.url; |
|
|
|
|
// }).join(','); |
|
|
|
|
this.data.images = this.imagesList.map(item => { |
|
|
|
|
return item.url; |
|
|
|
|
}).join(','); |
|
|
|
|