diff --git a/src/components/ArteryPrintTemplateV2/ArteryPrintTemplateV2.vue b/src/components/ArteryPrintTemplateV2/ArteryPrintTemplateV2.vue
index aaf4f748..4f00c43f 100644
--- a/src/components/ArteryPrintTemplateV2/ArteryPrintTemplateV2.vue
+++ b/src/components/ArteryPrintTemplateV2/ArteryPrintTemplateV2.vue
@@ -84,15 +84,6 @@
卸车件数 |
异常备注 |
-
-
- {{ item }}
- |
-
@@ -280,6 +271,18 @@ const InitData = () => {
break;
}
+ if (!_flag) {
+ for (let j = _orderList.length - 1; j >= 0; j--) {
+ const item = _orderList[j];
+ console.log('j :>> ', j);
+
+ if (item.consignee !== val.consignee) continue;
+ _orderList.splice(j, 0, val);
+ _flag = true;
+ break;
+ }
+ }
+
!_flag && _orderList.push(val);
}