diff --git a/src/views/emis/emisWaybill/batchWaybillRecord.vue b/src/views/emis/emisWaybill/batchWaybillRecord.vue index 09125fbf..8ec89737 100644 --- a/src/views/emis/emisWaybill/batchWaybillRecord.vue +++ b/src/views/emis/emisWaybill/batchWaybillRecord.vue @@ -566,7 +566,7 @@ export default { this.orderList = this.orderList.concat(this.tmpDataList); //拼接remark 和virtualRemark this.orderList.forEach((item,index)=>{ - if(item.blVirtual ==='是'){ + if(item.blVirtual ==='是' && item.transLineType ==='缅甸快递'){ item.remark = `${item.remark && item.remark.toString().replace(/\s/g, '').length>0?item.remark+',':''}${item.masterBillCode && item.masterBillCode.toString().replace(/\s/g, '').length>0 ?'该单为虚拟单:对应主单为:'+item.masterBillCode:''}` } })