From 4d23f8b0fddf20e544c8ab0a1f1675eb0bb2ca00 Mon Sep 17 00:00:00 2001
From: wuteng <419274783@qq.com>
Date: Fri, 20 Jun 2025 18:20:06 +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=E6=8B=BC=E6=8E=A5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../emis/emisWaybill/batchWaybillRecord.vue | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/src/views/emis/emisWaybill/batchWaybillRecord.vue b/src/views/emis/emisWaybill/batchWaybillRecord.vue
index 517633ea..01f4f55b 100644
--- a/src/views/emis/emisWaybill/batchWaybillRecord.vue
+++ b/src/views/emis/emisWaybill/batchWaybillRecord.vue
@@ -107,12 +107,8 @@
-
-
- {{scope.row.remark }}该运单为主单,对应虚拟单为{{ scope.row.virtualRemark }}
-
-
-
+
+
@@ -566,6 +562,14 @@ export default {
}
this.orderList = this.orderList.concat(this.tmpDataList);
+ //拼接remark 和virtualRemark
+ this.orderList.forEach((item,index)=>{
+ console.log('----1',item.remark)
+ console.log('----2',item.blVirtual)
+ if(item.blVirtual ==='是'){
+ item.remark = `${item.remark},此单为虚拟单,对应主单为:${item.masterBillCode}`
+ }
+ })
this.tmpDataList=[];
this.openUploadForm = false;