只差对接口
This commit is contained in:
42
src/components/indexreporttop.vue
Normal file
42
src/components/indexreporttop.vue
Normal file
@@ -0,0 +1,42 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user