大盒子标签 增加车辆号

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

View File

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