From 35706002455c370eca21e177b95e39cff78f8f5b Mon Sep 17 00:00:00 2001
From: guoyujie <guoyujie@ng.com>
Date: 星期二, 15 七月 2025 08:34:28 +0800
Subject: [PATCH] Merge branch 'master' of http://bore.pub:10439/r/ERP_override

---
 north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCardDetails.vue |   22 ++++++++++++++++++----
 1 files changed, 18 insertions(+), 4 deletions(-)

diff --git a/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCardDetails.vue b/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCardDetails.vue
index 6a0d77b..2e52072 100644
--- a/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCardDetails.vue
+++ b/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCardDetails.vue
@@ -2,7 +2,7 @@
 
 import request from "@/utils/request"
 import deepClone from "@/utils/deepClone"
-import {ElDatePicker, ElMessage} from "element-plus"
+import {ElCheckbox, ElDatePicker, ElMessage} from "element-plus"
 import {nextTick, onMounted, onUnmounted, reactive, ref, watch} from "vue"
 import {useRouter} from 'vue-router'
 import {useI18n} from 'vue-i18n'
@@ -50,7 +50,8 @@
   technologyNumber: null,
   process: null
 })
-
+//钀芥灦椤哄簭
+let landingSequence= ref(1)
 //鎵撳嵃
 let printRow = ref({
   list: null,
@@ -64,7 +65,8 @@
   faceOrientation: null,//鍐呭闈�
   type: null,//鏍囩妯℃澘
   lableType: null,//鏍囩绫诲瀷
-  dataType: null//鏍囩绫诲瀷
+  dataType: null,
+  landingSequence:null
 })
 
 
@@ -715,7 +717,7 @@
               id += selectRecords[i].id + "|"
             }
           }
-
+          labelRow.value.landingSequence = landingSequence
           labelRow.value.list = JSON.stringify(selectRecords)
           labelRow.value.faceOrientation = faceOrientation
           labelRow.value.type = type
@@ -820,6 +822,10 @@
     }
   })
 }
+
+function onlandingSequenceChange(checked) {
+  landingSequence.value = checked ? 0 : 1
+}
 </script>
 
 <template>
@@ -856,6 +862,13 @@
             :value="item.value"
         />
       </el-select>
+      &nbsp;
+      <el-checkbox
+          :model-value="landingSequence === 0"
+          @change="onlandingSequenceChange"
+      >
+        {{ t('processCard.landingSequence') }}
+      </el-checkbox>
     </div>
 
     <div class="main-table">
@@ -991,6 +1004,7 @@
                           :lableType="labelRow.lableType"
                           :list="labelRow.list"
                           :type="labelRow.type"
+                          :landingSequence="labelRow.landingSequence"
                           style="width: 100%;height: 100%"/>
     </el-dialog>
 

--
Gitblit v1.8.0