- <view style="margin:{{style.margin.top *2}}rpx {{style.margin.right*2}}rpx {{style.margin.bottom *2}}rpx {{style.margin.left*2}}rpx;padding:{{style.padding.top *2}}rpx {{style.padding.right*2}}rpx {{style.padding.bottom *2}}rpx {{style.padding.left*2}}rpx;background:{{style.backgroundColor}};width: {{style.width}}%; border-radius:{{style.borderRadius *2}}rpx">
- <view class="icongroup" style="">
- <block wx:for="{{list}}" wx:for-item="icon" wx:key="index">
- <view bind:tap="goNovaURL" data-item="{{icon}}" class="icongroup-item" style="width: {{style.iconValue}}%;margin-top:10px;display:flex;flex-direction:column;jusitify-content:center;align-items:center;height:auto;">
- <image src="{{icon.icon || icon.image || 'https://file-cloud.fmode.cn/nCCirOU5zn/20211220/hctr02102052.png'}}" style="border-radius:{{style.borderRadius || '0'}}%;width:{{style.iconWidth * 2}}rpx; height:{{style.iconHeight * 2}}rpx" mode="" />
- <view class="title" style="font-size:{{style.fontSize*2}}rpx">{{icon.name}}</view>
- </view>
- </block>
- </view>
- </view>
|