大盒子标签 增加车辆号
This commit is contained in:
parent
c7a73a0f34
commit
320e54edae
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user