singleimg.wxml 485 B

123456
  1. <block wx:for="{{list}}" wx:key="index">
  2. <image bind:tap="goNovaURL" data-item="{{item}}" src="{{item.image}}" style="margin:{{style.margin.top* 2 }}rpx {{style.margin.right* 2 }}rpx {{style.margin.bottom* 2 }}rpx {{style.margin.left* 2 }}rpx;height:{{style.height * 2}}rpx;width:{{style.width}}%;border-radius:{{style.borderRadius * 2}}rpx" />
  3. <view class="title" wx:if="{{item.showTitle == true}}" style="font-size:{{style.fontSize *2}}rpx">
  4. {{item.title}}
  5. </view>
  6. </block>