|
|
@ -21,23 +21,23 @@ |
|
|
|
<view class="btns"> |
|
|
|
|
|
|
|
<!-- 水洗订单:水洗店选择收货方式 --> |
|
|
|
<template v-if="item.status == 4"> |
|
|
|
<view @click.stop="orderConfirmAccept(item, {logisticsFlag : 0})" class="b2"> |
|
|
|
快递取货 |
|
|
|
<template v-if="[4, 6].includes(order.status)"> |
|
|
|
<view @click.stop="orderConfirmAccept(order, {logisticsFlag : 0}, 1)" class="b2"> |
|
|
|
{{ order.status == 4 ? '快递取货' : '快递寄回' }} |
|
|
|
</view> |
|
|
|
<view @click.stop="orderConfirmAccept(item, {logisticsFlag : 1})" class="b1"> |
|
|
|
<view @click.stop="orderConfirmAccept(order, {logisticsFlag : 1}, 1)" class="b1"> |
|
|
|
自行配送 |
|
|
|
</view> |
|
|
|
</template> |
|
|
|
|
|
|
|
<view |
|
|
|
v-if="[4, 18, 19].includes(order.status)" |
|
|
|
v-if="[18, 19].includes(order.status)" |
|
|
|
@click.stop="orderConfirmAccept(order)"> |
|
|
|
确认接单 |
|
|
|
</view> |
|
|
|
|
|
|
|
<!-- 待收货 --> |
|
|
|
<template v-if="order.status == 2"> |
|
|
|
<template v-if="[2, 21].includes(order.status)"> |
|
|
|
<view @click.stop="confirmReceiveGoods(order)"> |
|
|
|
确认收货 |
|
|
|
</view> |
|
|
@ -62,16 +62,16 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<view |
|
|
|
v-if="[8, 12].includes(order.status)" |
|
|
|
v-if="[8, 12, 22].includes(order.status)" |
|
|
|
@click.stop="$refs.deliverGoods.open()" class="b2"> |
|
|
|
发货填写单号 |
|
|
|
</view> |
|
|
|
|
|
|
|
<view |
|
|
|
<!-- <view |
|
|
|
v-if="[6].includes(order.status)" |
|
|
|
@click.stop="orderFinishedWashing(order)"> |
|
|
|
水洗完成 |
|
|
|
</view> |
|
|
|
</view> --> |
|
|
|
|
|
|
|
</view> |
|
|
|
|
|
|
@ -118,19 +118,19 @@ |
|
|
|
|
|
|
|
<view |
|
|
|
class="current-price" |
|
|
|
v-if="p.washPay"> |
|
|
|
v-if="p.washPay && !userShop"> |
|
|
|
水洗费用:{{ p.washPay }}元 |
|
|
|
</view> |
|
|
|
|
|
|
|
<view |
|
|
|
class="current-price" |
|
|
|
v-if="p.rentPay"> |
|
|
|
v-if="p.rentPay && !userShop"> |
|
|
|
租赁费用:{{ p.rentPay }}元 |
|
|
|
</view> |
|
|
|
|
|
|
|
<view |
|
|
|
class="current-price" |
|
|
|
v-if="p.deposit"> |
|
|
|
v-if="p.deposit && !userShop"> |
|
|
|
押金:{{ p.deposit }}元 |
|
|
|
</view> |
|
|
|
|
|
|
@ -188,7 +188,8 @@ |
|
|
|
</view> |
|
|
|
</view> --> |
|
|
|
|
|
|
|
<view class="line address"> |
|
|
|
<view class="line address" |
|
|
|
v-if="!userShop"> |
|
|
|
<view class="address-top"> |
|
|
|
<view class=""> |
|
|
|
收货地址 |
|
|
|