体检数据

This commit is contained in:
zhaotiantian
2023-11-22 18:24:54 +08:00
parent a9541bc81c
commit bd168e909f
13 changed files with 1182 additions and 13 deletions
+1110
View File
File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 1.7 MiB

After

Width:  |  Height:  |  Size: 1.7 MiB

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

+2 -2
View File
@@ -18,10 +18,10 @@
position: absolute; position: absolute;
display: block; display: block;
width: 70%; width: 70%;
left: 10px; left: 8px;
bottom: -14px; bottom: -14px;
height: 8px; height: 8px;
background: url("../../assets/light.png") no-repeat; background: url("../images/light.png") no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }
} }
+4 -2
View File
@@ -64,9 +64,11 @@ function handleSelect(index:number){
.server-container{ .server-container{
color: #A3A4A4; color: #A3A4A4;
padding-top: 4%; padding-top: 4%;
height: 88%;
display: grid;
align-items: start;
.server-item{ .server-item{
padding: 3.5% 0; font-size: 18px;
font-size: 20px;
span{ span{
display: inline-block; display: inline-block;
width: 50%; width: 50%;
+58
View File
@@ -5,6 +5,32 @@
<div class="type-time"> <div class="type-time">
<span :class="selectIndex===index?'select':'unSelect'" v-for="(item,index) in typeTime" :key="index" @click="handleSelect(index)">{{item.name}}</span> <span :class="selectIndex===index?'select':'unSelect'" v-for="(item,index) in typeTime" :key="index" @click="handleSelect(index)">{{item.name}}</span>
</div> </div>
<div class="physical-container">
<div class="physical-item">
<span>10444</span>
<span>兴隆圆医院</span>
</div>
<div class="physical-item">
<span>144</span>
<span>兴隆圆医院</span>
</div>
<div class="physical-item">
<span>344</span>
<span>兴隆圆医院</span>
</div>
<div class="physical-item">
<span>144</span>
<span>兴隆圆医院</span>
</div>
<div class="physical-item">
<span>144</span>
<span>兴隆圆医院</span>
</div>
<div class="physical-item">
<span>144</span>
<span>延安</span>
</div>
</div>
</div> </div>
</div> </div>
</template> </template>
@@ -28,6 +54,7 @@ const typeTime = ref([
value:'week', value:'week',
} }
]) ])
const physical = ref();
const selectIndex = ref(0) const selectIndex = ref(0)
function handleSelect(index:number){ function handleSelect(index:number){
selectIndex.value = index; selectIndex.value = index;
@@ -36,5 +63,36 @@ function handleSelect(index:number){
<style scoped lang="less"> <style scoped lang="less">
.inner { .inner {
height: calc(100% - 40px); height: calc(100% - 40px);
.physical-container{
width: 96%;
height: 92%;
padding-top: 2%;
display: flex;
flex-wrap: wrap;
align-content: space-around;
.physical-item{
width: 33%;
height: 46%;
color: #FFFFFF;
display: flex;
flex-direction: column;
span:nth-child(1){
font-size: 28px;
font-weight: bold;
}
span:nth-child(2){
padding-top: 6%;
font-size: 22px;
}
}
.physical-item:nth-child(1),.physical-item:nth-child(2),.physical-item:nth-child(3){
background: url("../../assets/images/physical-top.png") no-repeat;
background-size: 100% 100%;
}
.physical-item:nth-child(4),.physical-item:nth-child(5),.physical-item:nth-child(6){
background: url("../../assets/images/physical-bottom.png") no-repeat;
background-size: 100% 100%;
}
}
} }
</style> </style>
+1 -3
View File
@@ -1,9 +1,7 @@
<template> <template>
<div> <div>
<public-title title="健康状况/慢病"/> <public-title title="健康状况/慢病"/>
<div class="inner"> <div class="inner"></div>
</div>
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
+4 -3
View File
@@ -16,10 +16,11 @@ const props = defineProps({
text-align: left; text-align: left;
height: 40px; height: 40px;
line-height: 40px; line-height: 40px;
background: linear-gradient(270deg, rgba(106, 112, 124, 0.4) 0%, rgba(106, 112, 124, 0) 70%, rgba(106, 112, 124, 0) 100%); background: linear-gradient(90deg, rgba(106, 112, 124, 0.4) 0%, rgba(106, 112, 124, 0) 70%, rgba(106, 112, 124, 0) 100%);
opacity: 1; opacity: 1;
border: 1px solid; border-top: 1px solid #6A707C;
border-image: linear-gradient(270deg, rgba(217.0000022649765, 231.00000143051147, 255, 0.5), rgba(217.0000022649765, 231.00000143051147, 255, 0)) 1 1; border-bottom: 1px solid #6A707C;
border-image: linear-gradient(90deg, rgba(217.0000022649765, 231.00000143051147, 255, 0.5), rgba(217.0000022649765, 231.00000143051147, 255, 0)) 1 1;
color: #ffffff; color: #ffffff;
font-size: 20px; font-size: 20px;
font-weight: 700; font-weight: 700;
+3 -3
View File
@@ -70,7 +70,7 @@ init();
.outer { .outer {
height: 100%; height: 100%;
box-sizing: border-box; box-sizing: border-box;
background: url("../assets/bg.png") no-repeat; background: url("../assets/images/bg.png") no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }
@@ -79,7 +79,7 @@ init();
line-height: 80px; line-height: 80px;
display: flex; display: flex;
padding-bottom: 9px; padding-bottom: 9px;
background: url("../assets/top-title.png") no-repeat; background: url("../assets/images/top-title.png") no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
.title-d-left, .title-d-middle, .title-d-right { .title-d-left, .title-d-middle, .title-d-right {
@@ -142,7 +142,7 @@ init();
.bottom-d { .bottom-d {
height: 40px; height: 40px;
background: url("../assets/bottom-b.png") no-repeat; background: url("../assets/images/bottom-b.png") no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }
</style> </style>