|
|
@ -15,9 +15,9 @@ |
|
|
|
<div class="sptting-plates"> |
|
|
|
<div class="card" v-for="i in 6" :key="i"> |
|
|
|
<div class="plate-area"> |
|
|
|
<div class="plate-bottom" v-if="plates.length > 0"> |
|
|
|
<span></span> |
|
|
|
<span class="project-name">{{ plates[i - 1]?.projShortName }}</span> |
|
|
|
<div class="plate-bottom" v-if="plates[i - 1]?.isInstall"> |
|
|
|
<span class="project-lot">{{ plates[i - 1]?.projName }}</span> |
|
|
|
<span class="project-name">{{ plates[i - 1]?.lotId }}</span> |
|
|
|
<span class="project-number">{{ |
|
|
|
!!plates[i - 1]?.isInstall ? `${plates[i - 1]?.num}/25` : '' |
|
|
|
}}</span> |
|
|
@ -115,7 +115,7 @@ const updateSliderEndVal = async (plateNum, order) => { |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
background-color: #f6f6f6; |
|
|
|
// padding-left: 4px; |
|
|
|
padding-left: 8px; |
|
|
|
// 温度区域 |
|
|
|
.temperature { |
|
|
|
width: 100%; |
|
|
@ -188,11 +188,8 @@ const updateSliderEndVal = async (plateNum, order) => { |
|
|
|
background-color: #f6f6f6; |
|
|
|
|
|
|
|
.plate-area { |
|
|
|
// width: 100%; |
|
|
|
// height: 100%; |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
align-items: center; |
|
|
|
position: relative; |
|
|
|
|
|
|
|
.close-circle { |
|
|
@ -216,18 +213,26 @@ const updateSliderEndVal = async (plateNum, order) => { |
|
|
|
} |
|
|
|
|
|
|
|
.plate-bottom { |
|
|
|
width: 100%; |
|
|
|
// width: 100%; |
|
|
|
height: 32px; |
|
|
|
background-color: #808080; |
|
|
|
display: flex; |
|
|
|
justify-content: space-around; |
|
|
|
// justify-content: space-around; |
|
|
|
align-items: center; |
|
|
|
color: white; |
|
|
|
line-height: 32px; |
|
|
|
font-size: 22px; |
|
|
|
padding: 0 10px; |
|
|
|
gap: 8px; |
|
|
|
|
|
|
|
.project-name, |
|
|
|
.project-name, .project-lot { |
|
|
|
flex: 1 1 auto; |
|
|
|
text-align: left; |
|
|
|
white-space: nowrap; |
|
|
|
overflow: hidden; |
|
|
|
text-overflow: ellipsis; |
|
|
|
} |
|
|
|
.project-number { |
|
|
|
font-size: 25px; |
|
|
|
font-weight: 300; |
|
|
|
flex: 0 0 auto; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|