|
|
@ -1,7 +1,13 @@ |
|
|
|
<template> |
|
|
|
<div class="home_container"> |
|
|
|
<div class="header_card_wrap"> |
|
|
|
<div class="header_info"></div> |
|
|
|
<div class="header_info"> |
|
|
|
<p class="machine_title">A18000</p> |
|
|
|
<div class="status_wrap"> |
|
|
|
<img :src="Ok" class="status_img" alt="" /> |
|
|
|
<p class="status_text">密封良好</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<Tube /> |
|
|
|
</div> |
|
|
|
<div class="content_card_wrap"> |
|
|
@ -13,6 +19,7 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup> |
|
|
|
import Ok from '@/assets/img/ok.png' |
|
|
|
import Tube from 'cpns/Tube' |
|
|
|
import Steps from 'cpns/Steps' |
|
|
|
import LiquidInjection from 'cpns/operation/LiquidInjection' |
|
|
@ -40,6 +47,32 @@ import Tabs from 'cpns/Tabs' |
|
|
|
align-items: center; |
|
|
|
justify-content: space-between; |
|
|
|
margin-bottom: 32px; |
|
|
|
padding: 0 45px; |
|
|
|
.machine_title { |
|
|
|
font-family: Poppins; |
|
|
|
font-size: 36px; |
|
|
|
font-weight: bold; |
|
|
|
line-height: normal; |
|
|
|
letter-spacing: 0.02em; |
|
|
|
color: #08092c; |
|
|
|
} |
|
|
|
.status_wrap { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
.status_img { |
|
|
|
width: 28px; |
|
|
|
height: 28px; |
|
|
|
} |
|
|
|
.status_text { |
|
|
|
font-family: Poppins; |
|
|
|
font-size: 22px; |
|
|
|
font-weight: bold; |
|
|
|
line-height: normal; |
|
|
|
letter-spacing: 0.02em; |
|
|
|
color: #9395a0; |
|
|
|
margin-left: 9px; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
.content_card_wrap { |
|
|
|