|
@@ -87,12 +87,14 @@
|
|
|
<div class="sign_time" v-if="item.waimaiOrderId && [1,2].includes(item.takeType)">
|
|
|
{{ item.exceptTime.slice(5) }}前送达
|
|
|
</div>
|
|
|
- <div class="sign_txt" v-if="item.waimaiOrderId && item.takeType == 0">
|
|
|
- 立即送达
|
|
|
+ <div class="sign_txt" v-if="tabNum===0 && item.waimaiOrderId && item.takeType == 0">
|
|
|
+ 立即送达,{{item.orderTime.slice(-8)}}下单
|
|
|
</div>
|
|
|
<div class="sign_d" v-if="item.buttonStatus === 10 && item.timeTxt">{{item.timeTxt}}自动发起配送</div>
|
|
|
|
|
|
<div v-if="item.buttonStatus === 10 && !item.waimaiOrderId" class="sign_d">{{item.deliveryTime.slice(5)}}自动发起配送</div>
|
|
|
+ <!-- 近三日订单 -->
|
|
|
+ <div class="sign_d" v-if="tabNum === 7 &&item.finishTime">{{item.finishTime && item.finishTime.slice(5)}}已完成</div>
|
|
|
</div>
|
|
|
<!-- 新订单 -->
|
|
|
<div class="order_item_header_r" v-if="item.buttonStatus === 0">
|
|
@@ -123,14 +125,14 @@
|
|
|
<!-- 取货中 -->
|
|
|
<div class="order_item_header_r" v-if="item.buttonStatus === 2">
|
|
|
<el-tag v-if="tabNum === -1" class="header_r">取货中</el-tag>
|
|
|
- <!-- <span v-show="Number(item.riderArriveMinute)" class="header_r">预计{{Number(item.riderArriveMinute)}}分钟取件</span> -->
|
|
|
+ <span v-show="Number(item.riderArriveMinute)" class="header_r">预计{{Number(item.riderArriveMinute)}}分钟取件</span>
|
|
|
<!-- <el-button size='small' @click.stop="cancelOrder(item.id)">取消订单</el-button> -->
|
|
|
<el-button size="small" class="btn" @click.stop="orderPrinter(item.waimaiOrderId)" v-if="item.waimaiOrderId">补打发票</el-button>
|
|
|
</div>
|
|
|
<!-- 配送中 -->
|
|
|
<div class="order_item_header_r" v-if="item.buttonStatus === 3">
|
|
|
<el-tag v-if="tabNum === -1" class="header_r">配送中</el-tag>
|
|
|
- <!-- <span class="header_r" v-if="item.exceptTime">预计{{ item.exceptTime }}送达</span> -->
|
|
|
+ <span class="header_r" v-if="item.exceptTime">预计{{ item.exceptTime }}送达,{{item.surPlusMinute >= 0 ? '剩余'+item.surPlusMinute + '分钟' : '超时' +item.surPlusMinute +"分钟" }}</span>
|
|
|
<el-button size="small" class="btn" @click.stop="orderPrinter(item.waimaiOrderId)" v-if="item.waimaiOrderId">补打发票</el-button>
|
|
|
</div>
|
|
|
<!-- 异常单 -->
|
|
@@ -1137,7 +1139,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
.sign_txt {
|
|
|
- width: 64px;
|
|
|
+ // width: 64px;
|
|
|
height: 20px;
|
|
|
border: 1px solid #009cff;
|
|
|
background: #f2faff;
|
|
@@ -1148,6 +1150,7 @@ export default {
|
|
|
font-weight: 600;
|
|
|
color: #009cff;
|
|
|
margin-left: 10px;
|
|
|
+ padding: 0 5px;
|
|
|
}
|
|
|
|
|
|
.sign_d {
|
|
@@ -1168,13 +1171,14 @@ export default {
|
|
|
font-size: 14px;
|
|
|
font-weight: 400;
|
|
|
color: #333333;
|
|
|
- margin-right: 22px;
|
|
|
+ // margin-right: 22px;
|
|
|
}
|
|
|
|
|
|
.btn {
|
|
|
background: #fc7200;
|
|
|
border-color: #fc7200;
|
|
|
color: #fff;
|
|
|
+ margin-left: 20px;
|
|
|
// position: absolute;
|
|
|
// right: 10px;
|
|
|
}
|