49 lines
2.6 KiB
Plaintext
49 lines
2.6 KiB
Plaintext
<block wx:if="{{storedArr.length > 0}}">
|
||
<image class="userStoredBack" src="/static/img/userStored_back.png" mode="widthFix"></image>
|
||
<view class="userStored">
|
||
<view class="userStoredCont">
|
||
<image src="/static/img/userStored_icon.png" class="userStoredCont-back"></image>
|
||
<image src="/static/img/userStored_text.png" class="userStoredCont-text"></image>
|
||
<view class="userStoredCont-list">
|
||
<view class="userStoredCont-label" wx:for="{{storedArr}}" wx:key="storedArr">
|
||
<view class="userStoredCont-title">
|
||
<text>{{item.title}}</text>
|
||
<view class="userStoredCont-title-tips">消费红包</view>
|
||
</view>
|
||
<view class="userStoredCont-brief">
|
||
{{item.text}}<text>({{item.qty}}张50元)</text>
|
||
</view>
|
||
<view class="userStoredCont-rights">
|
||
<view class="userStoredCont-rights-left">
|
||
<image src="/static/img/userStored_img_00.png" class="userStoredCont-fireworks"
|
||
mode="widthFix">
|
||
</image>
|
||
<view class="userStoredCont-tips">
|
||
<image src="/static/img/userStored_img_01.png" class="userStoredCont-rights-back"
|
||
mode="widthFix"></image>
|
||
<text>{{item.coupon_name}}</text>
|
||
</view>
|
||
<view class="userStoredCont-price">
|
||
<text>¥{{item.worth}}</text>(满{{item.full}}减{{item.worth}})
|
||
</view>
|
||
</view>
|
||
<view bindtap="userNav" data-url="/pages/rights/rights?rightsId={{item.right_config_id}}&orderType=shareStored" class="userStoredCont-rights-btn">立即儲值</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</block>
|
||
<view class="pack-center pages-hint" wx:else>
|
||
<image src="/static/img/staff_null.png"></image>
|
||
<view>暂无订单</view>
|
||
</view>
|
||
|
||
<!-- 漂浮窗 -->
|
||
<movable-area class="indexFloat" wx:if="{{canShare}}">
|
||
<movable-view y="400" direction="vertical" class="indexFloat-movable">
|
||
<navigator hover-class="none" url="/pages/userStored/storedCode/storedCode" class="indexFloat-img">
|
||
<image src="/static/img/index_float_01.png" mode="aspectFill"></image>
|
||
</navigator>
|
||
</movable-view>
|
||
</movable-area> |