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;