You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1014 B
Vue
62 lines
1014 B
Vue
<template>
|
|
<div id="top-header">
|
|
<dv-decoration-8 class="header-left-decoration" />
|
|
<dv-decoration-5 class="header-center-decoration" />
|
|
<dv-decoration-8 class="header-right-decoration" :reverse="true" />
|
|
|
|
<div class="center-title">烘房监控平台</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import moment from "moment";
|
|
|
|
export default {
|
|
name: 'TopHeader',
|
|
|
|
data () {
|
|
return {
|
|
gettimedata: "",
|
|
}
|
|
},
|
|
mounted() {
|
|
// this.gettime();
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
#top-header {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-shrink: 0;
|
|
|
|
.header-center-decoration {
|
|
width: 40%;
|
|
height: 60px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.header-left-decoration, .header-right-decoration {
|
|
width: 25%;
|
|
height: 60px;
|
|
}
|
|
|
|
.center-title {
|
|
position: absolute;
|
|
font-size: 30px;
|
|
font-weight: bold;
|
|
left: 50%;
|
|
top: 15px;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
}
|
|
</style>
|