大盒子标签 增加车辆号

This commit is contained in:
bo.wu@finesys.com.cn 2025-05-15 11:46:50 +08:00
parent c7a73a0f34
commit 320e54edae

View File

@ -114,6 +114,7 @@
<div class="part-name"> <div class="part-name">
<div>大盒号{{ item.name }} </div> <div>大盒号{{ item.name }} </div>
<div>站台号{{ item.standId }}</div> <div>站台号{{ item.standId }}</div>
<div>车辆号 {{item.vehicle}}</div>
</div> </div>
</div> </div>
@ -136,6 +137,7 @@ import { errorBox } from '@/utils/myMessageBox.js'
import { ElMessage } from 'element-plus' import { ElMessage } from 'element-plus'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs' import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
import QrcodeVue from 'qrcode.vue' import QrcodeVue from 'qrcode.vue'
import Vehicle from './vehicle.vue'
</script> </script>
<script> <script>
@ -143,8 +145,8 @@ export default {
name: 'sortBox', name: 'sortBox',
data() { data() {
return { return {
standId: store.getters.getStandId, // standId: store.getters.getStandId,
// standId: 'ASRS-#7', standId: 'ASRS-#7',
printTabs: [], printTabs: [],
printObj: { printObj: {
id: "printArea", // ID id: "printArea", // ID
@ -278,7 +280,8 @@ export default {
return { return {
name: item.bigBox, // name: item.bigBox, //
quantity: item.orderQuantity, // quantity: item.orderQuantity, //
standId: this_.standId // standId: this_.standId, //
vehicle: item.vehicle, //
} }
}) })
this.printTabs = printData this.printTabs = printData
@ -485,15 +488,18 @@ export default {
.header-row { .header-row {
display: flex; display: flex;
/* align-items: center; */ align-items: center;
/* justify-content: space-between; */ /* justify-content: space-between; */
/* margin-bottom: 10px; */ /* margin-bottom: 10px; */
} }
.part-name { .part-name {
padding: 6px 20px; margin-left: 30px;
font-size: 30px; font-size: 20px;
font-weight: bold; font-weight: bold;
text-align: left;
} }
.stand-id { .stand-id {