index.wxml 1.2 KB

123456789101112131415161718
  1. <!--components/diy-article/index.wxml-->
  2. <view class="aritcle_info">
  3. <block wx:for="{{aritcleList}}" wx:key="index">
  4. <view class="aritcle" style="width:{{style.width}}%;height:{{style.height * 2}}rpx;margin-bottom:{{style.marginBottom * 2}}rpx;margin:{{style.marginAuto}};border-radius:{{style.borderRadius * 2}}rpx;background:{{style.background}}">
  5. <view class="left_meun" style="margin-left:{{style.leftMeun * 2}}rpx">
  6. <view class="title" style="margin-top: {{style.titleTop * 2}}rpx;margin-bottom: {{style.titleDown * 2}}rpx;font-size: {{style.titleSize * 2}}rpx;font-weight: {{style.titleWeight}};">
  7. {{item.title}}
  8. </view>
  9. <view class="author" style="color:{{style.authorColor}}">
  10. {{item.author}}
  11. </view>
  12. </view>
  13. <view>
  14. <image class="image" src="{{item.image ? item.image : item.cover}}" style="width:{{style.imageWidth * 2}}rpx;height:{{style.imageHeight * 2}}rpx;border-radius:{{style.imageRadius * 2}}rpx;margin-top: {{style.imageTop * 2}}rpx;margin-right: {{style.imageRight * 2}}rpx;" />
  15. </view>
  16. </view>
  17. </block>
  18. </view>