操作屏

This commit is contained in:
2025-01-13 12:54:07 +08:00
parent b4e378c146
commit 83b381fa46
3 changed files with 37 additions and 11 deletions

View File

@@ -219,7 +219,7 @@
label="订单号"
/>
<el-table-column
prop="material_code"
prop="material_id"
label="零件号"
/>
<el-table-column
@@ -253,7 +253,7 @@
@current-change="handleCurrentChange1"
>
<el-table-column
prop="vehicle_path"
prop="material_id"
label="图纸查看"
/>
</el-table>
@@ -380,10 +380,8 @@ export default {
this.show = true
})
} else if (type === 'PALLET') {
crudProduceScreen.getPointVehicle({ device_code: this.popData.device_code }).then(res => {
crudProduceScreen.fabMaterial({ vehicle_code: res }).then(res => {
this.popList = [...res]
})
crudProduceScreen.selectMaterialAndJpg(this.popData.device_code).then(res => {
this.popList = [...res.materialList]
})
this.show = true
}
@@ -467,7 +465,7 @@ export default {
},
handleCurrentChange1(val) {
if (val) {
this.imgSrc = val.vehicle_path
this.imgSrc = val.material_path
}
}
}