|
@@ -6,6 +6,7 @@
|
|
|
<view class="nav-item nav-wait ittflex {{navItemActive == '1' ? 'nav-item-active' : ''}}" bindtap="handleChangeNav" data-index="1">核销记录</view>
|
|
|
</view>
|
|
|
</block>
|
|
|
+ <!-- 充值记录 -->
|
|
|
<block wx:if="{{navItemActive == '0'}}">
|
|
|
<view class="charge-record record-main">
|
|
|
<block wx:if="{{chargeRecordList.length == 0}}">
|
|
@@ -35,11 +36,12 @@
|
|
|
<text>{{item.addTime}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="right count">+{{item.useNumber}}</view>
|
|
|
+ <view class="right count">{{item.useNumber}}</view>
|
|
|
</view>
|
|
|
</block>
|
|
|
</view>
|
|
|
</block>
|
|
|
+ <!-- 核销记录 -->
|
|
|
<block wx:if="{{navItemActive == '1'}}">
|
|
|
<view class="destory-record record-main">
|
|
|
<block wx:if="{{destoryRecordList.length == 0}}">
|
|
@@ -48,19 +50,31 @@
|
|
|
</view>
|
|
|
</block>
|
|
|
<block wx:if="{{destoryRecordList.length !== 0}}">
|
|
|
- <view class="record-item ittflex-jcs" wx:for="{{destoryRecordList}}" wx:key="index">
|
|
|
- <view class="left icon">
|
|
|
- <!-- <image class="image" src="../../imaes/shiti@2x.png"></image> -->
|
|
|
- <image class="image" src="../../imaes/baogao_sel@2x.png"></image>
|
|
|
+ <view class="des-record-item ittflex-jcs" wx:for="{{destoryRecordList}}" wx:key="index">
|
|
|
+ <view class="item-left img">
|
|
|
+ <image class="img-item" src="../../imaes/baogao_sel@2x.png"></image>
|
|
|
</view>
|
|
|
- <view class="center info">
|
|
|
- <view class="title info-item">体验核销成功</view>
|
|
|
- <view class="time info-item">
|
|
|
+ <view class="item-center">
|
|
|
+ <!-- 状态 0:已核销 1:待体检(输入核销码) 2:体检完成 (体检报告检出) -->
|
|
|
+ <view class="item-status">
|
|
|
+ <text wx:if="{{item.status == 0}}">已核销</text>
|
|
|
+ <text wx:if="{{item.status == 1}}">待体检</text>
|
|
|
+ <text wx:if="{{item.status == 2}}">体检完成</text>
|
|
|
+ </view>
|
|
|
+ <view class="real-name stitle">
|
|
|
+ <text>体检人:</text>
|
|
|
+ <text>{{item.realName}}</text>
|
|
|
+ </view>
|
|
|
+ <view class="order-code stitle">
|
|
|
+ <text>核销码:</text>
|
|
|
+ <text>{{item.orderCode}}</text>
|
|
|
+ </view>
|
|
|
+ <view class="add-time stitle">
|
|
|
<text>核销时间:</text>
|
|
|
- <text>2022-10-10 22:22</text>
|
|
|
+ <text>{{item.addTime}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="right count">+199</view>
|
|
|
+ <view class="item-right">-1</view>
|
|
|
</view>
|
|
|
</block>
|
|
|
</view>
|