Files
falvpingtai/src/components/indexreporttop.vue
2019-11-27 16:24:31 +08:00

42 lines
681 B
Vue

<template>
<div class="indexreporttop">
<p class="left">{{left}}</p>
<img src="../assets/quit.png" alt="" class="close">
</div>
</template>
<script>
export default {
name:"indexreporttop",
props:{
left:{
type:String
}
}
}
</script>
<style lang="scss">
.indexreporttop{
width: 100%;
height:88px;
display: flex;
justify-content: space-between;
border-bottom: 1px solid #F5F5F5;
box-sizing: border-box;
.left{
color: #333333;
font-size:34px;
line-height: 88px;
margin-left: 31px;
font-weight:500;
}
.close{
width: 36px;
height: 36px;
margin: auto 0;
margin-right: 30px;
}
}
</style>