topics.wxml 358 B

123456
  1. <!--pages/publics/topics/topics.wxml-->
  2. <view style="padding: 10rpx 0 80rpx 0;">
  3. <view wx:for="{{topics}}" style="display: flex;justify-content: center;">
  4. <image src="{{item.pic}}" data-title="{{ item.title }}" bindtap="gotoZWDetail" data-url="{{item.url}}" mode="widthFix" style="width: 100%;border-radius: 12rpx;margin: 20rpx;"></image>
  5. </view>
  6. </view>