|
|
@@ -18,7 +18,7 @@
|
|
|
<view class="bills-info_box content-box">
|
|
|
<view class="order-info_box">
|
|
|
<view>订单日期:</view>
|
|
|
- <view>{{ detailInfo.updateTime }}</view>
|
|
|
+ <view>{{ detailInfo.updateTime.substring(0, 16) }}</view>
|
|
|
</view>
|
|
|
<view class="order-info_box">
|
|
|
<view>订单编号:</view>
|
|
|
@@ -27,7 +27,10 @@
|
|
|
<button @click="copy(detailInfo.orderSn)" class="admin-button-com default">复制</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
-
|
|
|
+ <view v-if="detailInfo.status==1" class="order-info_box">
|
|
|
+ <view>过期时间:</view>
|
|
|
+ <view>{{ detailInfo.deadline.substring(0, 16) }}</view>
|
|
|
+ </view>
|
|
|
<view v-if="detailInfo.ghsShopAdminId != 0" class="order-info_box">
|
|
|
<view>商家开单:</view>
|
|
|
<view>
|
|
|
@@ -56,7 +59,6 @@
|
|
|
<view>配送时间:</view>
|
|
|
<view>{{ detailInfo.sendTimeWant }}</view>
|
|
|
</view>
|
|
|
-
|
|
|
<view class="order-info_box">
|
|
|
<view>订单状态:</view>
|
|
|
<view>{{
|