wpfw_ewei_wxapp/pages/verifygoods/detail/index.wxml
2023-02-26 08:10:18 +08:00

78 lines
3.6 KiB
Plaintext

<view class="page">
<view class="fui-content">
<view class="fui-list-group notop" style="background: #f2f5f7;">
<view class="fui-list">
<view class="fui-list-media">
<image src="{{verifygoods.thumb}}"></image>
</view>
<view class="fui-list-inner">
<view class="title">{{verifygoods.title}}</view>
<view class="subtitle">{{verifygoods.subtitle}}</view>
</view>
</view>
</view>
<view class="code_box" wx:if="{{canverify}}">
<view class="p" wx:if="{{canverify}}">请将二维码出示给核销员</view>
<view class="img_box detail_code">
<image alt="" src="{{qrcode}}"></image>
</view>
<view class="cav_code">{{verifycode}}</view>
</view>
<view class="fui-cell-group" wx:if="{{!canverify}}">
<view class="fui-cell noborder">{{canverify_message}}
</view>
</view>
<view class="fui-cell-group">
<view class="fui-cell-title">核销详情</view>
<view class="fui-cell noborder" wx:if="{{store}}">
<view class="fui-cell-info">
核销门店:{{store.storename}}
</view>
<view class="fui-cell-remark noremark"></view>
</view>
<view class="fui-cell noborder">
<view class="fui-cell-info">
核销次数:
<block wx:if="{{verifygoods.limitnum>0}}">剩余:{{verifygoods.limitnum-verifynum}} / 总数: {{verifygoods.limitnum}}</block>
<block wx:else>不限次数</block>
</view>
<view class="fui-cell-remark noremark"></view>
</view>
<view class="fui-cell noborder">
<view class="fui-cell-info">
有效日期:{{limitdatestr}}前有效
</view>
<view class="fui-cell-remark noremark"></view>
</view>
</view>
<view class="fui-cell-group">
<view class="fui-cell-title">核销记录</view>
<view class="fui-cell noborder" wx:if="{{verifygoodlogs.length==0}}">
<view style="margin: 45rpx auto;font-size:26rpx;color:#b2b2b2">
<image src="/static/images/empty.png" style="width:73rpx;height:73rpx;vertical-align: middle;margin-right:12rpx"></image>暂时没有记录</view>
</view>
<block wx:else>
<view class="record" wx:for="{{verifygoodlogs}}" wx:for-item="itemlog">
<view class="fui-cell noborder">
<view class="fui-cell-label">核销员</view>
<view class="fui-cell-info">{{itemlog.salername}}</view>
<view class="fui-cell-remark noremark">{{itemlog.verifydate}}</view>
</view>
<view class="fui-cell noborder">
<view class="fui-cell-label">核销门店</view>
<view class="fui-cell-info">{{itemlog.storename}}</view>
</view>
<view class="fui-cell noborder">
<view class="fui-cell-label">核销次数</view>
<view class="fui-cell-info">{{itemlog.verifynum}}</view>
</view>
<view class="fui-cell noborder">
<view class="fui-cell-label">备注</view>
<view class="fui-cell-info">{{itemlog.remarks}}</view>
</view>
</view>
</block>
</view>
</view>
</view>