Files

75 lines
2.0 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 {
2021-12-08 18:12:47 +08:00
width: 10rem /* 1920/192 */;
height: .520833rem /* 100/192 */;
2021-11-22 09:17:41 +08:00
background-image: url(./bg.png);
2021-12-08 18:12:47 +08:00
background-size: 100% .416667rem /* 80/192 */;
2021-11-22 09:17:41 +08:00
background-repeat: no-repeat;
.tit {
2021-12-08 18:12:47 +08:00
font-size: .1875rem /* 36/192 */;
2021-11-22 09:17:41 +08:00
font-family: YouSheBiaoTiHei;
color: #91d5fe;
2021-12-08 18:12:47 +08:00
line-height: .244792rem /* 47/192 */;
letter-spacing: .03125rem /* 6/192 */;
2021-11-22 09:17:41 +08:00
text-align: center;
2021-12-08 18:12:47 +08:00
padding-top: .067708rem /* 13/192 */;
2021-11-22 09:17:41 +08:00
}
}
</style>