wpfw_ewei_wxapp/pages/common/act-picker.wxml
2023-02-26 08:10:18 +08:00

56 lines
3.2 KiB
Plaintext
Raw 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="actOutPicker" class="act-mask {{fadein}}" wx:if="{{fadein=='in'}}"></view>
<view class="inner {{fadein}} {{iphonexnavbar}}">
<view bindtap="actOutPicker" class="fui-cell-title" style="border-bottom:1px solid #efefef;padding:30rpx 28rpx;">促销活动 <text class="icox icox-close pull-right"></text>
</view>
<view class="fui-cell-group fui-sale-group noborder" style="margin-top:0; overflow-y: auto;padding-bottom:130rpx;max-height:700rpx">
<view class="act-cell" wx:if="{{activity.enough||activity.merch_enough}}">
<view class="act-cell-title">
<text class="act-tips"></text> 满减活动</view>
<view class="act-cell-inner">
<text class="" wx:for="{{activity.enough}}" wx:key="key1">全场满{{item.enough}}立减{{item.money}};</text>
<text class="" wx:for="{{activity.merch_enough}}" wx:key="key2">本店满{{item.enough}}立减{{item.give}};</text>
</view>
</view>
<view class="act-cell" wx:if="{{activity.fullback}}">
<view class="act-cell-title">
<text class="act-tips"></text> {{goods.fullbacktext}}活动</view>
<view class="act-cell-inner">
{{goods.fullbacktext}}总额:{{activity.fullback.all_enjoy}}
每天返:{{activity.fullback.enjoy}}
时间:{{activity.fullback.day}}
</view>
</view>
<view class="act-cell" wx:if="{{activity.postfree}}">
<view class="act-cell-title">
<text class="act-tips"></text> 包邮</view>
<view class="act-cell-inner">
<text wx:if="{{activity.postfree.goods}}">本商品包邮;</text>
<text wx:if="{{activity.postfree.scope}}">
<text>{{activity.postfree.scope}}</text>
<text wx:if="{{activity.postfree.enoughfree>0}}">满¥{{activity.postfree.enoughfree}}</text>
<text>包邮</text>
</text>
<text wx:if="{{activity.postfree.num}}">单品买{{activity.postfree.num}}件包邮;</text>
<text wx:if="{{activity.postfree.price}}">单品买¥{{activity.postfree.price}}包邮</text>
</view>
</view>
<view class="act-cell" wx:if="{{activity.buyagain}}">
<view class="act-cell-title">
<text class="act-tips"></text> 复购</view>
<view class="act-cell-inner">
此商品重复购买可享受{{activity.buyagain.discount}}折优惠;
<span wx:if="{{activity.buyagain.buyagain_sale==0}}">重复购买 不与其他优惠共享</span>
</view>
</view>
<view class="act-cell" wx:if="{{activity.credit}}">
<view class="act-cell-title">
<text class="act-tips"></text>{{credittext}}</view>
<view class="act-cell-inner">
<text wx:if="{{activity.credit.deduct}}">最高抵扣¥{{activity.credit.deduct}}</text>
<text wx:if="{{activity.credit.give}}">购买赠送{{activity.credit.give}}{{credittext}}</text>
</view>
</view>
</view>
<view bindtap="actOutPicker" class="btn act-btn btn-danger">确定</view>
</view>