|
@@ -242,8 +242,8 @@ export default {
|
|
|
async exam(status) {
|
|
|
let info = this.info;
|
|
|
info.status = status;
|
|
|
- if (status == '-2' || info.transport) info.transport.shop_receive = true;
|
|
|
- else if (status == '-2' || !info.transport) {
|
|
|
+ if (status == '-2' && info.transport) info.transport.shop_receive = true;
|
|
|
+ else if (status == '-2' && !info.transport) {
|
|
|
let transport = {};
|
|
|
transport.shop_receive = true;
|
|
|
info.transport = transport;
|