|
@@ -448,7 +448,7 @@ const mainPicture2 = computed(() => {
|
|
Array.isArray(productInfo.product_image) &&
|
|
Array.isArray(productInfo.product_image) &&
|
|
productInfo.product_image.length
|
|
productInfo.product_image.length
|
|
) {
|
|
) {
|
|
- return sliceImage(productInfo.product_image[0], 600)
|
|
|
|
|
|
+ return sliceImage(productInfo.product_image[0], 1000)
|
|
}
|
|
}
|
|
return ''
|
|
return ''
|
|
})
|
|
})
|
|
@@ -468,7 +468,7 @@ const otherPicture2 = computed(() => {
|
|
) {
|
|
) {
|
|
return productInfo.product_image
|
|
return productInfo.product_image
|
|
.slice(1)
|
|
.slice(1)
|
|
- .map((i: string) => sliceImage(i, 500))
|
|
|
|
|
|
+ .map((i: string) => sliceImage(i, 1000))
|
|
}
|
|
}
|
|
return []
|
|
return []
|
|
})
|
|
})
|