This commit is contained in:
WangXiaoDong
2024-06-02 20:35:24 +08:00
parent ff9e2f510b
commit c93483e36f
8 changed files with 58 additions and 32 deletions

View File

@@ -12,6 +12,7 @@
<div class="falls_item_img">
<img
v-lazy="item.designPythonOutfitUrl"
@click="setItemDetail(item)"
:style="{
height: item.style.imgHeihgt + 'px',
}"
@@ -231,6 +232,9 @@ export default defineComponent({
}
this.$el.style.height = Math.max(...this.poss) + this.gap_y + "px";
},
setItemDetail(data){
this.$emit('getImgScale',data)
}
},
})
</script>