This commit is contained in:
zhaotiantian
2023-12-01 18:21:40 +08:00
parent 9ab26f4915
commit 2319af2203
13 changed files with 931 additions and 867 deletions
+31 -32
View File
@@ -1,6 +1,6 @@
<template>
<div>
<public-title title="基层医疗点远程会诊"/>
<public-title title="基层医疗点远程会诊" />
<div class="inner">
<div class="inner-item"></div>
<div class="inner-item"></div>
@@ -10,37 +10,36 @@
</div>
</template>
<script setup lang="ts">
import PublicTitle from "../publicTitle.vue";
import PublicTitle from '../publicTitle.vue';
</script>
<style scoped lang="less">
.inner {
width: 100%;
height: calc(100% - 40px);
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-content: space-around;
padding-top: 2%;
.inner-item{
width: 48%;
height: 46%;
.inner {
width: 100%;
height: calc(100% - 40px);
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-content: space-around;
padding-top: 2%;
.inner-item {
width: 48%;
height: 46%;
}
.inner-item:nth-child(1) {
background: url('../../assets/images/doctors1.png') no-repeat;
background-size: 100% 100%;
}
.inner-item:nth-child(2) {
background: url('../../assets/images/doctors2.png') no-repeat;
background-size: 100% 100%;
}
.inner-item:nth-child(3) {
background: url('../../assets/images/doctors3.png') no-repeat;
background-size: 100% 100%;
}
.inner-item:nth-child(4) {
background: url('../../assets/images/doctors4.png') no-repeat;
background-size: 100% 100%;
}
}
.inner-item:nth-child(1){
background: url("../../assets/images/doctors1.png")no-repeat;
background-size: 100% 100%;
}
.inner-item:nth-child(2){
background: url("../../assets/images/doctors2.png")no-repeat;
background-size: 100% 100%;
}
.inner-item:nth-child(3){
background: url("../../assets/images/doctors3.png")no-repeat;
background-size: 100% 100%;
}
.inner-item:nth-child(4){
background: url("../../assets/images/doctors4.png")no-repeat;
background-size: 100% 100%;
}
}
</style>
</style>