wpfw_ewei_wxapp/pages/diy/template/tpl_detail_spec.wxml
2023-02-26 08:10:18 +08:00

26 lines
1.7 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view bindtap="selectPicker" class="fui-cell-group fui-cell-click" data-buytype="select" data-class="select-picker" data-id="{{goods.id}}" data-tap="{{active}}" style="background:{{diyitem.style.background}};margin-top:{{diyitem.style.margintop==0?0:diyitem.style.margintop+'rpx'}};margin-bottom:{{diyitem.style.marginbottom==0?0:diyitem.style.marginbottom+'rpx'}};" wx:if="{{goods.canbuy}}">
<view class="fui-cell" wx:if="{{!isSelected}}">
<view class="fui-cell-text option-selector" style="color:{{diyitem.style.textcolor}};">请选择
<block wx:if="{{goods.spec_titles}}">{{goods.spec_titles}}等</block>
<block wx:else>数量</block>
</view>
<view class="fui-cell-remark"></view>
</view>
<view class="fui-cell" wx:else>
<view class="fui-cell-info" style="color:{{diyitem.style.textcolor}};">已选数量x{{total}} {{specsTitle}}</view>
</view>
</view>
<view class="fui-cell-group fui-cell-click nobuy" style="bottom:{{isIpx?'68rpx':'0'}}" wx:else>
<view class="fui-cell">
<view class="fui-cell-text">
<block wx:if="{{goods.userbuy==0}}">您已经超出最大{{goods.usermaxbuy}}件购买量</block>
<block wx:elif="{{goods.levelbuy==0}}">您当前会员等级没有购买权限</block>
<block wx:elif="{{goods.groupbuy==0}}">您所在的用户组没有购买权限</block>
<block wx:elif="{{goods.timebuy==-1}}">未到开始抢购时间!</block>
<block wx:elif="{{goods.timebuy==1}}">抢购时间已经结束!</block>
<block wx:elif="{{goods.total<=0}}">商品已经售罄!</block>
<block wx:elif="{{goods.status==0}}">商品已下架!</block>
</view>
</view>
</view>