gooslist.wxml 1.0 KB

123456789101112131415
  1. <view class="box" style="padding-top:{{style.paddingtop * 2}}rpx; padding-right:{{style.paddingright * 2}}rpx">
  2. <block wx:for="{{test}}" wx:key="index">
  3. <view class="txt" style="border-radius:{{style.imgmarginRight}}rpx;background: {{style.background}};width:{{style.width}}; margin-left:{{style.txtmarginleft * 2}}rpx;margin-bottom:{{style.txtmarginbottom * 2}}rpx">
  4. <image src="{{item.image}}" style="border-radius:{{style.imgmarginRight}}rpx;height:{{style.imgHeight * 2}}rpx;width:{{style.imgwidth}}"></image>
  5. <view class="txt-name" style="color: {{style.colorname}}">{{item.name}}</view>
  6. <view class="txt-state" style="color: {{style.colorstate}}">{{item.state}}</view>
  7. <view class="price_info">
  8. <view class="price" style="color: {{style.colora}}">¥{{item.price}}</view>
  9. <view class="original_price" style="color: {{style.colorb}}">
  10. ¥{{item.original}}
  11. </view>
  12. </view>
  13. </view>
  14. </block>
  15. </view>