|
@@ -13,7 +13,7 @@
|
|
|
<block wx:else>
|
|
|
<view wx:for="{{appointmentList}}" wx:key="index" class="data-item">
|
|
|
<view class="top date ittflex-jcb">
|
|
|
- <text class="top-date">{{item.appointmentTime}}</text>
|
|
|
+ <text class="top-date">{{item.appointmentTimeStr}}</text>
|
|
|
<!-- status 1 待服务,2,3 已取消 4: 已完成 5.超时 -->
|
|
|
<text class="status s-wait" wx:if="{{item.status == 1}}">待服务</text>
|
|
|
<text class="status s-done" wx:if="{{item.status == 4}}">已完成</text>
|
|
@@ -29,6 +29,10 @@
|
|
|
<text>下单时间:</text>
|
|
|
<text>{{item.addTime}}</text>
|
|
|
</view>
|
|
|
+ <view class="order-time info-item" wx:if="{{item.status == 4}}">
|
|
|
+ <text>完成时间:</text>
|
|
|
+ <text>{{item.finishTime}}</text>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="bototm actions" wx:if="{{item.status == 1}}">
|
|
|
<view class="submit-btn itt-btn ittflex" bindtap="handleScanCode">去核销</view>
|