|
|
@ -129,7 +129,6 @@ defineExpose({ |
|
|
|
<span v-if="craft?.state === 'FINISHED'" class="status-text">工艺执行成功</span> |
|
|
|
<el-tooltip v-if="craft?.state === 'RUNNING' && craftSteps && craftSteps[craft.currentIndex || 0]?.params?.description" :content="`${(craft.currentIndex || 0) + 1}.${craftSteps[craft.currentIndex || 0].params.description}`" placement="top" trigger="click"> |
|
|
|
<div class="status-description"> |
|
|
|
{{ (craft.currentIndex || 0) + 1 }}. |
|
|
|
{{ craftSteps[craft.currentIndex || 0].params.description }} |
|
|
|
</div> |
|
|
|
</el-tooltip> |
|
|
@ -165,8 +164,11 @@ defineExpose({ |
|
|
|
</span> |
|
|
|
<span v-show="data.fanOpen" style="color: #14A656;font-weight: bold">降温中</span> |
|
|
|
<span v-show="data.heatingType === 'heating'" style="color: #FE0A0A;font-weight: bold ">加热中</span> |
|
|
|
<span v-show="data.heatingType === 'constant'" style="color: #FE0A0A;font-weight: bold ">恒温中</span> |
|
|
|
<span v-show="data.heatingType === 'drying'" style="color: #F2652D;font-weight: bold ">烘干中</span> |
|
|
|
<span v-show="data.heatingType === 'annealing'" style="color: #1677FF;font-weight: bold ">退火中</span> |
|
|
|
<!-- <span v-show="data.heatingType === 'finish'" style="color: #FE0A0A;font-weight: bold ">加热完成</span> --> |
|
|
|
<!-- <span v-show="data.heatingType === 'stop'" style="color: #606266;font-weight: bold ">停止加热</span> --> |
|
|
|
</div> |
|
|
|
<CountDown v-if="data.startHeatTime && data.targetTime" :current="new Date().getTime()" :start-time="data.startHeatTime" :duration="data.targetTime" /> |
|
|
|
<div class="footer"> |
|
|
|