|
@@ -47,7 +47,7 @@
|
|
|
:style="{
|
|
|
width: data.image_width + 'px',
|
|
|
height: data.image_height + 'px',
|
|
|
- background: 'url(' + data.image_list[0].url + ') center / contain no-repeat',
|
|
|
+ background: 'url(' + data.image_list[0].file_url + ') center / contain no-repeat',
|
|
|
position: 'relative',
|
|
|
}"
|
|
|
>
|
|
@@ -291,7 +291,7 @@ export default {
|
|
|
handleData() {
|
|
|
this.data.image_list.forEach((item) => {
|
|
|
GetFileURLMap({ file_id_list: [item.file_id] }).then(({ url_map }) => {
|
|
|
- this.$set(item, 'url', url_map[item.file_id]);
|
|
|
+ this.$set(item, 'file_url', url_map[item.file_id]);
|
|
|
});
|
|
|
});
|
|
|
},
|