疫情防控

This commit is contained in:
liuye
2022-01-10 10:12:05 +08:00
parent 6884aae53f
commit 3848eaf285
4 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
<template>
<div class="AppEpidemicSituation">
<div class="header">
<img src="./components/img/header.png" alt="">
<div class="content-info"></div>
</div>
</div>
</template>
<script>
import {mapState} from 'vuex'
export default {
name: "AppEpidemicSituation",
appName: "疫情防控",
data() {
return {
}
},
computed: {...mapState(['user'])},
onShow() {
},
methods: {
},
}
</script>
<style lang="scss" scoped>
.AppEpidemicSituation {
.header{
img{
width: 100%;
height: 504px;
}
.content-info{
width: calc(100% - 60px);
height: 209px;
background: #FFF;
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
border-radius: 8px;
margin: -136px 30px 0;
}
}
}
</style>