index.wxml 1.0 KB

12345678910111213141516171819202122
  1. <view class="page">
  2. <view class="page_item" wx:for="{{list}}" wx:key="{{index}}" bindtap="view" data-id="{{item.id}}">
  3. <image class="item_pic" src="{{item.pic}}" mode="widthFix"></image>
  4. <view class="item_title">{{item.name}}</view>
  5. <view class="item_desc">
  6. <text class="price">¥ {{item.price}}</text>
  7. <button class="nxh__button nxh__button2" catchtap='doBuy' data-id="{{item.id}}" data-name="{{item.name}}">购买</button>
  8. </view>
  9. </view>
  10. <view class="item_null" wx:if='{{isShowNull}}'>
  11. <view class='left_line' />
  12. <text class='text'>已经到底啦~^_^~</text>
  13. <view class='right_line' />
  14. </view>
  15. <view class='cash'>
  16. <button class='nxh__button nxh__button3' open-type="contact">在线客服</button>
  17. <button class='nxh__button nxh__button3' bindtap='cash'>礼品卡兑换</button>
  18. </view>
  19. </view>
  20. <!-- 礼品卡兑换弹框 -->
  21. <cashdialog id='cashdialog' confirmText='去兑换' bindcustomevent='toCash'></cashdialog>