pack.wxml 722 B

12345678910111213141516
  1. <!--component/pack.wxml-->
  2. <wxs src="../../wxs/tool.wxs" module="tool"></wxs>
  3. <view bind:tap="tosetMealDetail" class="item-each z-padding-16 z-margin-t-24" bindtap="detail" data-info="{{info}}">
  4. <!-- 省 标签 -->
  5. <text class="sheng-tag">立省 ¥{{info.diffPrice}}</text>
  6. <image class="item-each-img-box z-margin-r-24" src="{{tool.cdn(info.image)}}" mode="aspectFill" lazy-load
  7. lazy-load-margin="0" />
  8. <view>
  9. <view class="setMeal-item-name">{{info.name}}</view>
  10. <view class="setMeal-item-gg">{{info.content}}</view>
  11. <view class="price_box_left z-padding-t-24">
  12. <view class="z-font-22 z-margin-t-8">¥</view>
  13. <view class="z-font-w">{{info.price}}</view>
  14. </view>
  15. </view>
  16. </view>