Browse Source

优化喷涂页面,去掉湿度状态及设备状态

master
LiLongLong 5 months ago
parent
commit
357515a119
  1. 4
      src/components/FooterBar.vue
  2. 2
      src/views/SprayView.vue

4
src/components/FooterBar.vue

@ -1,11 +1,11 @@
<template>
<header class="h-[--headerHeight] bg-primary flex items-center text-white px-[--borderWidth]">
<section class="bg-[#335AA5] px-4 py-2 rounded flex items-center gap-4">
<section style="display: none;" class="bg-[#335AA5] px-4 py-2 rounded flex items-center gap-4">
<span>当前湿度{{ statusStore.equipmentStatus.humidity }}%RH</span>
<!-- <span>当前温度18</span> -->
</section>
<section class="bg-[#335AA5] ml-6 px-4 py-2 rounded flex items-center gap-4">
<section style="display: none;" class="bg-[#335AA5] ml-6 px-4 py-2 rounded flex items-center gap-4">
<span>设备状态{{ workStatusDescMap[statusStore.workStatus] }}</span>
<!-- <span>当前温度18</span> -->
</section>

2
src/views/SprayView.vue

@ -33,7 +33,7 @@
<el-option v-for="item in craftList" :key="item.id" :label="item.name" :value="item.id" />
</el-select>
</div>
<el-popover placement="bottom" :width="380" trigger="click">
<el-popover placement="bottom-end" :width="380" trigger="click">
<template #reference>
<div class="text-primary underline flex items-center gap-1">
<span>{{ craftList.length === 0 ? "设置参数" : "详细参数" }}</span>

Loading…
Cancel
Save