add 烟气处理

This commit is contained in:
lb
2023-12-06 10:38:56 +08:00
parent f5233001e7
commit cc0d3d8b75
3 changed files with 168 additions and 68 deletions

View File

@@ -18,72 +18,6 @@
flex-direction: column;
gap: 16px;
">
<!-- test area -->
<!-- <DateBtnGroup /> -->
<!-- 风机频率 -->
<!-- <div
class="absolute"
style="
position: absolute;
top: 120px;
right: 100px;
padding: 12px;
background: #0003;
border: 1px solid #ccc;
display: grid;
grid-template-columns: repeat(2, 320px);
grid-auto-rows: 56px;
gap: 8px;
">
<ShadowRect v-for="n in 8" :key="n">
<span
style="
font-size: 16px;
line-height: 1.24;
flex: 1.2;
text-align: right;
padding-right: 8px;
letter-spacing: 1px;
">
{{ n }}#风机
</span>
<span style="font-size: 16px; line-height: 1.24; flex: 1">
{{ Math.floor(Math.random() * 100) }}Hz
</span>
</ShadowRect>
</div> -->
<!-- 窑炉信息 -->
<!-- <div
class="absolute"
style="
position: absolute;
top: 450px;
right: 100px;
padding: 12px;
background: #0003;
border: 1px solid #ccc;
display: grid;
grid-template-columns: repeat(2, 320px);
grid-auto-rows: 56px;
gap: 8px;
">
<ShadowRect v-for="n in 8" :key="n">
</ShadowRect>
</div> -->
<!-- 原料用量统计 -->
<!-- <div
style="
position: absolute;
top: 10px;
left: 10px;
margin: 10px;
width: 400px;
">
<MaterialCost />
</div> -->
<!-- btn group -->
<!-- <div
class="absolute"
@@ -151,11 +85,13 @@
<div class="main-right" style="background: #00f1"></div>
</section> -->
<KHeader />
<div class="main-body" style="flex: 1; display: flex; gap: 16px">
<div class="main-body" style="flex: 1; display: flex; gap: 16px; padding: 8px 16px;">
<div class="left-side" style="flex: 2">
<LeftFour />
</div>
<div class="right-side" style="flex: 1;"></div>
<div class="right-side" style="flex: 1">
<RightTwo />
</div>
</div>
</div>
</template>
@@ -171,6 +107,7 @@ import KHeader from '../components/Header.vue';
import MaterialCost from './MaterialCost.vue';
import LeftFour from './LeftFour.vue';
import RightTwo from './RightTwo.vue';
console.log('Line', KilnLine);
@@ -181,6 +118,7 @@ export default {
KilnLine,
KHeader,
LeftFour,
RightTwo,
Container,
ShadowRect,
SelectorBtnGroup,