Files

75 lines
1.9 KiB
Vue
Raw Normal View History

2021-11-22 09:17:41 +08:00
<template>
<div class="bigScreenHead">
<div class="tit">驾驶舱总览</div>
<el-row style="width: 100%;">
<el-col :span="8">
<el-row style="padding: 0px 20px">
<el-col :span="8">
2021-12-03 17:05:42 +08:00
<bigScreenBtn title="驾驶舱总览" routerUrl="/bigScreen/drivingCabin"></bigScreenBtn>
2021-11-22 09:17:41 +08:00
</el-col>
<el-col :span="8">
2021-12-03 17:05:42 +08:00
<bigScreenBtn title="科研生产" routerUrl="/bigScreen/scientific"></bigScreenBtn>
2021-11-22 09:17:41 +08:00
</el-col>
<el-col :span="8">
2021-12-03 17:27:27 +08:00
<bigScreenBtn title="经营管理" routerUrl="/bigScreen/management"></bigScreenBtn>
2021-11-22 09:17:41 +08:00
</el-col>
</el-row>
</el-col>
<el-col :span="8" style="min-height: 1px">
</el-col>
<el-col :span="8">
<el-row style="padding: 0px 0 0 60px">
<el-col :span="8">
2021-12-03 17:27:27 +08:00
<bigScreenBtn title="质量管理" routerUrl="/bigScreen/qualityManage"></bigScreenBtn>
2021-11-22 09:17:41 +08:00
</el-col>
<el-col :span="8">
2021-12-03 17:27:27 +08:00
<bigScreenBtn title="安全管理" routerUrl="/bigScreen/securityManage"></bigScreenBtn>
2021-11-22 09:17:41 +08:00
</el-col>
<el-col :span="8">
2021-12-03 17:27:27 +08:00
<bigScreenBtn title="信息化管理" routerUrl="/bigScreen/information"></bigScreenBtn>
2021-11-22 09:17:41 +08:00
</el-col>
</el-row>
</el-col>
</el-row>
</div>
</template>
<script>
import bigScreenBtn from "../bigScreenBtn/index.vue";
export default {
name: 'BigScreenHead',
props: {},
components: {
bigScreenBtn
},
data () {
return {
}
},
}
</script>
<style lang="scss" scoped>
.bigScreenHead {
width: 1920px;
height: 100px;
background-image: url(./bg.png);
background-size: 100% 80px;
background-repeat: no-repeat;
.tit {
font-size: 36px;
font-family: YouSheBiaoTiHei;
color: #91d5fe;
line-height: 47px;
letter-spacing: 6px;
text-align: center;
padding-top: 13px;
}
}
</style>