代码提交

This commit is contained in:
lixiaobang 2023-02-10 16:55:35 +08:00
commit cb3227f8a6
5 changed files with 424 additions and 11681 deletions

12006
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,7 @@
</div> </div>
</div> </div>
<div class="topCenter"> <div class="topCenter">
<div class="topText"> <div class="topText" text="国网南京雨花供电营业厅">
国网南京雨花供电营业厅 国网南京雨花供电营业厅
</div> </div>
@ -52,9 +52,9 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
.top{ .top{
width: 100%; width: 100%;
height: 9.6%; height: 93px;
display: flex; display: flex;
justify-content: space-between; jjustify-content: space-evenly;
.topLeft{ .topLeft{
width: 11%; width: 11%;
height: 55%; height: 55%;
@ -77,6 +77,14 @@ export default {
font-size: 35px; font-size: 35px;
display: flex; display: flex;
align-items: center; align-items: center;
color: #ffffff;
}
.topText:before{
content: attr(text);
position: absolute;
z-index: 10;
color:rgb(86, 254, 246);
-webkit-mask:linear-gradient(to top , transparent,);
} }
} }
.topRight{ .topRight{
@ -86,7 +94,9 @@ export default {
} }
} }
.main{ .main{
height: calc(100% - 9.6%); height: calc(1080px - 93px);
width: 100%; width: 100%;
position: relative;
top: -40px;
} }
</style> </style>

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

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,48 @@ methods:{
</script> </script>
<style> <style>
.content{
/* width: 100%;
*/
height: 100%;
position: relative;
}
.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/images/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>