From 7ec4b16bab55099c8a9efea491f0306ad42388e2 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期五, 28 六月 2024 13:02:11 +0800
Subject: [PATCH] 对常州天津标签打印进行配置
---
north-glass-erp/northglass-erp/src/views/pp/processCard/PrintCustomLabelSemi.vue | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintCustomLabelSemi.vue b/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintCustomLabelSemi.vue
index 08e9404..8bab46d 100644
--- a/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintCustomLabelSemi.vue
+++ b/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintCustomLabelSemi.vue
@@ -7,6 +7,9 @@
import {changeFilterEvent, filterChanged} from "@/hook"
import {useI18n} from 'vue-i18n'
import deepClone from "@/utils/deepClone";
+import companyInfo from "@/stores/sd/companyInfo"
+
+const company = companyInfo()
//璇█鑾峰彇
const {t} = useI18n()
let router = useRouter()
@@ -103,15 +106,12 @@
<div v-for="(item1,id) in lastList" class="entirety_semi">
<div class="row4">{{faceOrientation}}</div>
<div v-for="(item,id) in labelList" class="contentRow">
- <div class="row1">{{ item.title }}:</div>
+ <div v-if="item.title==null" class="row1">{{ item.title }}</div>
+ <div v-else class="row1">{{ item.title }}:</div>
<div class="row2">{{ item1[item.name] }}</div>
</div>
- <div class="row3">
- <label>W:{{ item1.width }}</label>
-
- <label>H:{{ item1.height }}</label>
- </div>
+ <div v-html="company.printLabel.customSemi(item1)"></div>
</div>
</div>
--
Gitblit v1.8.0