productBottom.wxml 918 B

1234567891011121314
  1. <view class="page-bottom">
  2. <navigator class="p-b-btn" openType="switchTab" url="/pages/index/index">
  3. <text class="iconfont iconhome"></text>
  4. <text>首页</text>
  5. </navigator>
  6. <view bindtap="__e" class="{{['p-b-btn',goodsObjact.userCollect?'active':'']}}" data-event-opts="{{[ [ 'tap',[ [ 'toFavorite',['$0'],['goodsObjact'] ] ] ] ]}}">
  7. <text class="{{['iconfont ',!goodsObjact.userCollect?'iconlike':'',goodsObjact.userCollect?'iconlikefill':'']}}"></text>
  8. <text>收藏</text>
  9. </view>
  10. <view class="action-btn-group">
  11. <button bindtap="__e" class=" action-btn no-border add-cart-btn" data-event-opts="{{[ [ 'tap',[ [ 'buy',[2] ] ] ] ]}}" type="primary">加入购物车</button>
  12. <button bindtap="__e" class=" action-btn no-border buy-now-btn" data-event-opts="{{[ [ 'tap',[ [ 'buy',[1] ] ] ] ]}}" type="primary">立即购买</button>
  13. </view>
  14. </view>