|
|
@ -141,21 +141,21 @@ const handleLogoClick = () => { |
|
|
|
}, 1000) |
|
|
|
} |
|
|
|
|
|
|
|
const slideTrayIn = async () => { |
|
|
|
const params = { |
|
|
|
cmdCode: 'slide_tray_in', |
|
|
|
cmdId: '', |
|
|
|
} |
|
|
|
await sendControl(params) |
|
|
|
} |
|
|
|
|
|
|
|
const slideTrayOut = async () => { |
|
|
|
const params = { |
|
|
|
cmdCode: 'slide_tray_out', |
|
|
|
cmdId: '', |
|
|
|
} |
|
|
|
await sendControl(params) |
|
|
|
} |
|
|
|
// const slideTrayIn = async () => { |
|
|
|
// const params = { |
|
|
|
// cmdCode: 'slide_tray_in', |
|
|
|
// cmdId: '', |
|
|
|
// } |
|
|
|
// await sendControl(params) |
|
|
|
// } |
|
|
|
// |
|
|
|
// const slideTrayOut = async () => { |
|
|
|
// const params = { |
|
|
|
// cmdCode: 'slide_tray_out', |
|
|
|
// cmdId: '', |
|
|
|
// } |
|
|
|
// await sendControl(params) |
|
|
|
// } |
|
|
|
|
|
|
|
watch(() => isClose.value, async (newValue) => { |
|
|
|
if (!newValue) { |
|
|
@ -262,26 +262,32 @@ const nozzleSwitch = async () => { |
|
|
|
<ft-button type="info"> |
|
|
|
当前湿度: {{ systemStore.systemSensor.humidity }}%RH |
|
|
|
</ft-button> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<ft-button type="info" :click-handle="nozzleSwitch"> |
|
|
|
<img v-if="systemStore.systemStatus.nozzleHeating" src="../../assets/images/entry/heat_icon.svg" alt="" width="20px"> |
|
|
|
喷头温度: {{ systemStore.systemSensor.nozzleTemperature }}℃ |
|
|
|
</ft-button> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<ft-button type="info" :click-handle="slideSwitch"> |
|
|
|
<img v-if="systemStore.systemStatus.slidePlatHeating" src="../../assets/images/entry/heat_icon.svg" alt="" width="20px"> |
|
|
|
载玻台温度: {{ systemStore.systemSensor.slideTemperature }}℃ |
|
|
|
</ft-button> |
|
|
|
<ft-button type="info"> |
|
|
|
设备状态: {{ status }} |
|
|
|
</ft-button> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<ft-button :click-handle="slideTrayIn" :disabled="systemStore.systemStatus.spraying"> |
|
|
|
推入托盘 |
|
|
|
</ft-button> |
|
|
|
<ft-button :click-handle="slideTrayOut" :disabled="systemStore.systemStatus.spraying"> |
|
|
|
推出托盘 |
|
|
|
<ft-button type="info"> |
|
|
|
设备状态: {{ status }} |
|
|
|
</ft-button> |
|
|
|
</div> |
|
|
|
<!-- <div> --> |
|
|
|
<!-- <ft-button :click-handle="slideTrayIn" :disabled="systemStore.systemStatus.spraying"> --> |
|
|
|
<!-- 推入托盘 --> |
|
|
|
<!-- </ft-button> --> |
|
|
|
<!-- <ft-button :click-handle="slideTrayOut" :disabled="systemStore.systemStatus.spraying"> --> |
|
|
|
<!-- 推出托盘 --> |
|
|
|
<!-- </ft-button> --> |
|
|
|
<!-- </div> --> |
|
|
|
</el-footer> |
|
|
|
<FtStream :visible="systemStore.streamVisible" /> |
|
|
|
<Stop v-if="systemStore.systemStatus.stopPressed" /> |
|
|
@ -326,7 +332,7 @@ const nozzleSwitch = async () => { |
|
|
|
padding:0 65px; |
|
|
|
height: 120px; |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
justify-content: space-evenly; |
|
|
|
align-items: center; |
|
|
|
} |
|
|
|
} |
|
|
|