如果按比例计算会有误差,在我的安卓手机上,但我又不确定是不是所有的图片都被切成宽度为750了,所以加个判断吧

wechat_user_type
Ge Hao 8 years ago
parent 4d2231f982
commit fa4aafcf62
  1. 7
      pages/show_product/show_product.wxml

@ -27,7 +27,12 @@
<view class="desc-container">
<block wx:for="{{product.desc}}" wx:for-item="desc" wx:key="id">
<image class="desc-image" src="{{desc[0]}}" style="height: {{desc[2] / desc[1] * windowWidth}}px;" mode="aspectFit"/>
<view wx:if="{{desc[1] === '750'}}">
<image class="desc-image" src="{{desc[0]}}" style="height: {{desc[2]}}rpx; width: {{desc[1]}}rpx;" mode="aspectFit"/>
</view>
<view wx:else>
<image class="desc-image" src="{{desc[0]}}" style="height: {{desc[2] / desc[1] * windowWidth}}px;" mode="aspectFit"/>
</view>
</block>
</view>
</view>

Loading…
Cancel
Save