From 4b236c838a035ad9f891ddd17546dce7a9546533 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Tue, 24 Jun 2025 18:09:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=B9=E9=87=8F=E5=BD=95=E5=85=A5=E5=A4=87?= =?UTF-8?q?=E6=B3=A8=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/emis/emisWaybill/batchWaybillRecord.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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:''}` } })