物流工艺拆盘机

This commit is contained in:
2023-10-27 09:00:35 +08:00
parent aa376609f9
commit b07908b915

View File

@@ -219,8 +219,8 @@
<div class="p_device cpj_ssx_wrap">
<div class="ssx_wrap">
<div class="ssx" v-for="(e, i) in vconveyorLine" :key="i">
<img v-show="e.status === 2" class="device_img" src="../assets/images/device/ssx_green.png" alt="" @click="getInfo(e)">
<img v-show="e.status !== 2" class="device_img" src="../assets/images/device/ssx_gray.png" alt="" @click="getInfo(e)">
<img v-show="e.status === 2 || e.status === 5" class="device_img" src="../assets/images/device/ssx_green.png" alt="" @click="getInfo(e)">
<img v-show="e.status !== 2 && e.status !== 5" class="device_img" src="../assets/images/device/ssx_gray.png" alt="" @click="getInfo(e)">
<device-pop
type="ssx"
:pkId="pkId"
@@ -759,7 +759,7 @@ export default {
this.coolingConveyorLine = [...res.dry.coolingConveyorLine]
// 托盘输送线
this.trayStacker = res.vehicleConveyorLine.trayStacker.length > 0 ? [...res.vehicleConveyorLine.trayStacker][0] : {}
this.vconveyorLine = [...res.vehicleConveyorLine.conveyorLine]
this.vconveyorLine = [...res.vehicleConveyorLine.conveyorLine].reverse()
// 拆盘机暂时不显示
// this.trayDestacker = res.vehicleConveyorLine.trayDestacker.length > 0 ? [...res.vehicleConveyorLine.trayDestacker][0] : {}
},