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