12345678910111213141516171819 |
- <view class="page">
- <view class="page_item" wx:for="{{list}}" wx:key="{{index}}" bindtap="view" data-id="{{item.id}}">
- <image class="item_pic" src="{{item.pic}}" mode="widthFix"></image>
- <view class="item_title">{{item.name}}</view>
- <view class="item_price">¥ {{item.price}}</view>
- </view>
- <view class="item_null" wx:if='{{isShowNull}}'>
- <view class='left_line' />
- <text class='text'>已经到底啦~^_^~</text>
- <view class='right_line' />
- </view>
- <view class='cash'>
- <button class='nxh__button nxh__button3' open-type="contact">在线客服</button>
- <button class='nxh__button nxh__button3' bindtap='cash'>礼品卡兑换</button>
- </view>
- </view>
- <!-- 礼品卡兑换弹框 -->
- <cashdialog id='cashdialog' confirmText='立即兑换' bindcustomevent='toCash'></cashdialog>
|