From a660db06773007b1be690e0674829c00a57aeb7b Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期三, 24 十二月 2025 16:21:23 +0800
Subject: [PATCH] 订单首页流程卡新增楼层编号显示
---
north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue | 18 +++++++++++++++++-
1 files changed, 17 insertions(+), 1 deletions(-)
diff --git a/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue b/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue
index 782c4ad..47c4f2c 100644
--- a/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue
+++ b/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue
@@ -68,6 +68,7 @@
merge: null,
printFc:null,
flashback:null,
+ landingSequence:null,
compound:null
})
@@ -81,6 +82,8 @@
//鍊掑彊
let flashback = ref(1)
+//钀芥灦椤哄簭
+let landingSequence= ref(1)
//鍚堟灦鎵撳嵃
let compound = ref(null)
@@ -421,7 +424,9 @@
printRow.value.merge = company.flowCardMerge
printRow.value.printFc= printFc
printRow.value.flashback = flashback.value
+ printRow.value.landingSequence=landingSequence.value
printRow.value.compound = compound.value
+ console.log(printRow.value)
// router.push({path: '/main/processCard/printProcess', query: {printList: JSON.stringify(selectRecords),printMerge:printMergeVal}})
if(company.companyName=='甯稿窞甯傚悏鍒╃幓鐠冩湁闄愬叕鍙�'){
dialogTableVisibleStraight.value = true
@@ -601,7 +606,7 @@
return
}
if (printMerge.value === null || printMerge.value === '') {
- ElMessage.warning('璇峰~鍏ラ渶瑕佸悎骞剁殑灞�')
+ ElMessage.warning(t('rework.msg1'))
return
}
@@ -711,6 +716,10 @@
function onFlashbackChange(checked) {
flashback.value = checked ? 0 : 1
}
+
+function onlandingSequenceChange(checked) {
+ landingSequence.value = checked ? 0 : 1
+}
</script>
<template>
@@ -816,6 +825,12 @@
>
{{ t('processCard.flashback') }}
</el-checkbox>
+ <el-checkbox
+ :model-value="landingSequence === 0"
+ @change="onlandingSequenceChange"
+ >
+ {{ t('processCard.landingSequence') }}
+ </el-checkbox>
<el-input
v-model="compound"
:placeholder="$t('processCard.printCompound')"
@@ -881,6 +896,7 @@
:printFc="printRow.printFc"
:merges="printRow.merge"
:flashback = "printRow.flashback"
+ :landingSequence = "printRow.landingSequence"
:compound = "printRow.compound"
style="width: 100%;height: 100%"/>
</el-dialog>
--
Gitblit v1.8.0