diff --git a/src/views/emis/emisWaybill/waybillModify.vue b/src/views/emis/emisWaybill/waybillModify.vue index 550a9786..093d9135 100644 --- a/src/views/emis/emisWaybill/waybillModify.vue +++ b/src/views/emis/emisWaybill/waybillModify.vue @@ -1654,8 +1654,11 @@ methods: { this.sendSiteSelectCount =0; if(this.billCode && this.billCode!=undefined) { this.loading = true; - getWaybillDetail(this.billCode).then(response => { - + getWaybillDetail(this.billCode).then(response => { + if(response.data.orderStatus=='0'){ + this.$modal.msgError('未接单,不允许修改'); + return; + } if(this.$store.getters.ownerSiteCode!='88888'&&this.action!='got'){ if(this.$store.getters.ownerSiteCode!=response.data.sendSiteCode){ this.$modal.msgError('此单归属不允许修改');