|
|
@@ -84,7 +84,7 @@
|
|
|
<van-image
|
|
|
width="100%"
|
|
|
height="170"
|
|
|
- :src="item"
|
|
|
+ :src="getImg(item)"
|
|
|
fit="cover"
|
|
|
radius="12"
|
|
|
@click="preview(index, boxs)"
|
|
|
@@ -170,7 +170,7 @@ export default {
|
|
|
boxs() {
|
|
|
let list = [...this.blindBoxItems];
|
|
|
return list.map(item => {
|
|
|
- return this.getImg(this.changeImgs(item.pics));
|
|
|
+ return this.changeImgs(item.pics);
|
|
|
});
|
|
|
}
|
|
|
},
|
|
|
@@ -181,7 +181,7 @@ export default {
|
|
|
preview(index = 0, list = []) {
|
|
|
ImagePreview({
|
|
|
images: [...list].map(item => {
|
|
|
- return this.getImg(item);
|
|
|
+ return item;
|
|
|
}),
|
|
|
startPosition: index
|
|
|
});
|