diff --git a/src/views/ebiz/product-store/StoreDetail.vue b/src/views/ebiz/product-store/StoreDetail.vue index 74b444556..007d77c88 100644 --- a/src/views/ebiz/product-store/StoreDetail.vue +++ b/src/views/ebiz/product-store/StoreDetail.vue @@ -4,7 +4,7 @@
-
+
@@ -201,8 +201,9 @@ export default { }, imageLoaded(e) { const screeVH = window.innerHeight, - detailVH = e.path[3].offsetHeight + detailVH = this.$refs.imgContainer.offsetHeight this.$nextTick(() => { + console.log(screeVH - detailVH) screeVH - detailVH > 0 ? (this.$refs.fillContent.style.height = screeVH - detailVH + 'px') : '0px' }) }