布局代码提交

This commit is contained in:
luoshiwen 2023-02-10 15:47:22 +08:00
parent 18f01bcda7
commit 683a00ca01
4 changed files with 427 additions and 11698 deletions

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -5,8 +5,8 @@ import router from './router'
import ElementUI from 'element-ui' import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css' import 'element-ui/lib/theme-chalk/index.css'
Vue.use(ElementUI) Vue.use(ElementUI)
import Plugin from 'v-fit-columns'; // import Plugin from 'v-fit-cdcolumns';
Vue.use(Plugin); // Vue.use(Plugin);
import * as echarts from 'echarts' import * as echarts from 'echarts'
Vue.prototype.$echarts = echarts Vue.prototype.$echarts = echarts
import * as Three from 'three' import * as Three from 'three'

View File

@ -1,4 +1,36 @@
<template> <template>
<div class="content">
<!-- 左边的内容 -->
<div class="left-content">
<!-- 营业临厅时长 -->
<div class="business-hall">
</div>
<!-- 客流量 -->
<div class="passenger-flow">
</div >
<!-- 厅内统计 -->
<div class='hall-statistics'>
</div>
</div>
<!-- 右边的内容 -->
<div class="right-content">
<!-- 缴费情况 -->
<div class="payment">
</div>
<!-- 业务受理 -->
<div class="business-acceptance">
</div>
<!-- 服务情况 -->
<div class="service">
</div>
</div>
</div>
</template> </template>
<script> <script>
@ -18,5 +50,42 @@ methods:{
</script> </script>
<style> <style>
.left-content,.right-content{
position: absolute;
width: 396px;
top: 0;
height: 980px;
/* background-color: aqua; */
}
/* 内容板块背景 */
.left-content>div,.right-content>div{
background-image: url(../assets/border.png);
background-size: 100% 100%;
margin-bottom: 5px;
}
.left-content .business-hall{
height: 378px;
}
.left-content .passenger-flow{
height: 392px;
}
.left-content .hall-statistics{
height: 197px;
}
.right-content .payment{
height: 378px;
}
.right-content .business-acceptance{
height: 296px;
}
.right-content .service{
height: 296px;
}
.right-content{
right: 0;
}
.left-content{
left: 0;
}
</style> </style>