|
|
@ -165,6 +165,8 @@ |
|
|
|
let orderId = 0 |
|
|
|
|
|
|
|
let serviceId = 0 |
|
|
|
|
|
|
|
let status = 1 |
|
|
|
|
|
|
|
if (order.appletOrderItemDate && order.appletOrderItemDate.length > 0) { |
|
|
|
order.appletOrderItemDate.forEach(item => { |
|
|
@ -180,7 +182,11 @@ |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
serviceId = item.id, |
|
|
|
serviceId = item.id |
|
|
|
|
|
|
|
if(item.status == 0){ |
|
|
|
status = 0 |
|
|
|
} |
|
|
|
|
|
|
|
petList.push({ |
|
|
|
name: pet.name, |
|
|
@ -199,6 +205,7 @@ |
|
|
|
id: order.orderId, |
|
|
|
orderId, |
|
|
|
serviceId, |
|
|
|
status, |
|
|
|
address: order.cityAddress, |
|
|
|
addressDetail: order.address, |
|
|
|
fullDate: props.date.replace(/-/g, '/'), |
|
|
|