26 lines
1.7 KiB
Plaintext
26 lines
1.7 KiB
Plaintext
<view class="fui-navbar bottom-buttons {{iphonexnavbar}}" wx:if="{{goods.canbuy}}">
|
|
<view bindtap="favorite" class="nav-item favorite-item" wx:if="{{!limits}}">
|
|
<view class="icox {{goods.isfavorite?'icox-likefill':'icox-like'}}"></view>
|
|
<view class="label">关注</view>
|
|
</view>
|
|
<view bindtap="favorite" class="nav-item favorite-item {{goods.isfavorite?'active':''}}" data-isfavorite="{{goods.isfavorite?1:0}}" wx:if="{{goods.customer!=1&&limits}}">
|
|
<view class="icox {{goods.isfavorite?'icox-likefill':'icox-like'}}"></view>
|
|
<view class="label">关注</view>
|
|
</view>
|
|
<button class="nav-item customer-item" openType="contact" sendMessagePath="/pages/goods/detail/index?id={{goods.id}}" sessionFrom="weapp" showMessageCard="true" wx:if="{{goods.customer==1&&limits}}">
|
|
<view class="icox icox-customerservice"></view>
|
|
<view class="label">客服</view>
|
|
</button>
|
|
<navigator class="nav-item external" openType="switchTab" url="/pages/index/index?merchid={{goods.merchid}}">
|
|
<view class="icox icox-shop1"></view>
|
|
<view class="label">店铺</view>
|
|
</navigator>
|
|
<view bindtap="menucart" class="nav-item cart-item" id="menucart">
|
|
<view class="badge {{goods.cartount<=0?'out':'in'}}" wx:if="{{goods.cartcount&&limits}}">{{goods.cartcount}}</view>
|
|
<view class="icox icox-cart1"></view>
|
|
<view class="label">购物车</view>
|
|
</view>
|
|
<view bindtap="selectPicker" class="nav-item btn cartbtn" data-buytype="cart" data-id="{{goods.id}}" data-tap="{{active}}" wx:if="{{goods.canAddCart}}">加入购物车</view>
|
|
<view bindtap="selectPicker" class="nav-item btn buybtn" data-buytype="buy" data-id="{{goods.id}}" data-tap="{{active}}">立刻购买</view>
|
|
</view>
|