42 lines
681 B
Vue
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> |