Compare commits
No commits in common. "7cb246d24eadfaafe249385166106644f6312130" and "192cb61b4e3e50d288a2eaabd759b2c822b56982" have entirely different histories.
7cb246d24e
...
192cb61b4e
@ -150,9 +150,6 @@ export default {
|
||||
case '9190':
|
||||
this.$router.push("/bigscreen6")
|
||||
break;
|
||||
case '9280':
|
||||
this.$router.push("/bigscreen8")
|
||||
break;
|
||||
default:
|
||||
this.$router.push('/bigscreen')
|
||||
break;
|
||||
|
@ -111,11 +111,6 @@ export const constantRoutes = [
|
||||
component: () => import('@/views/bigscreen7/index.vue'),
|
||||
hidden: true
|
||||
},
|
||||
{
|
||||
path: '/bigscreen8',
|
||||
component: () => import('@/views/bigscreen8/index.vue'),
|
||||
hidden: true
|
||||
},
|
||||
{
|
||||
path: '/waterhome',
|
||||
component: () => import('@/views/waterHome/index.vue'),
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 336 KiB |
Binary file not shown.
Before Width: | Height: | Size: 19 KiB |
Binary file not shown.
Before Width: | Height: | Size: 15 KiB |
@ -1,154 +0,0 @@
|
||||
<template>
|
||||
<div class="bigscreen8-wrapper bigscreen-main-wrapper">
|
||||
<div class="header-main-wrapper">
|
||||
<div class="header-left-part-wrapper"></div>
|
||||
<div class="header-title-wrapper">淮海水利项目管理决策驾驶舱</div>
|
||||
<div class="header-right-part-wrapper"></div>
|
||||
</div>
|
||||
<div class="content-main-wrapper content-grid-wrapper">
|
||||
<div class="content-grid-item">
|
||||
<div class="bigscreen-item-wrapper">
|
||||
<div class="bigscreen-item-title-extra">项目概览</div>
|
||||
<div class="bigscreen-item-content"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="middle-map-wrapper" style="grid-row: span 3;">
|
||||
<div class="top-cards-wrapper">
|
||||
<div class="top-card-item">
|
||||
<div class="top-card-icon"></div>
|
||||
<div class="top-text-inner"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="middleMap"></div>
|
||||
</div>
|
||||
<div class="content-grid-item">
|
||||
<div class="bigscreen-item-wrapper">
|
||||
<div class="bigscreen-item-title-extra"></div>
|
||||
<div class="bigscreen-item-content"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-grid-item">
|
||||
<div class="bigscreen-item-wrapper">
|
||||
<div class="bigscreen-item-title-extra">项目分析</div>
|
||||
<div class="bigscreen-item-content" id="chart1"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-grid-item">
|
||||
<div class="bigscreen-item-wrapper">
|
||||
<div class="bigscreen-item-title-extra">质量排名</div>
|
||||
<div class="bigscreen-item-content"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-grid-item">
|
||||
<div class="bigscreen-item-wrapper">
|
||||
<div class="bigscreen-item-title-extra">中标率分析</div>
|
||||
<div class="bigscreen-item-content" id="chart2"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content-grid-item">
|
||||
<div class="bigscreen-item-wrapper">
|
||||
<div class="bigscreen-item-title-extra">问题类型占比</div>
|
||||
<div class="bigscreen-item-content" id="chart3"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="footer-main-wrapper"></div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import {
|
||||
generateBaseOptions,
|
||||
generatePieOptions,
|
||||
initChartStatic,
|
||||
} from "@/utils/bigscreenTool/index.js";
|
||||
import * as echarts from 'echarts'
|
||||
|
||||
export default {
|
||||
mounted() {
|
||||
this.initChart1();
|
||||
this.initChart2();
|
||||
this.initChart3();
|
||||
this.initMiddleMap();
|
||||
},
|
||||
methods: {
|
||||
initChart1() {},
|
||||
initChart2() {},
|
||||
initChart3() {},
|
||||
initMiddleMap() {},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
@import url(../../utils/bigscreenTool/index.scss);
|
||||
.bigscreen8-wrapper {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
mix-blend-mode: multiply;
|
||||
background-image: url(./assets/bg.png);
|
||||
background-size: 100% 100%;
|
||||
.header-main-wrapper {
|
||||
background-image: url(./assets/header.png);
|
||||
}
|
||||
.content-grid-wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 2fr 1fr;
|
||||
grid-template-rows: 33.3% 33.3% 33.3%;
|
||||
.content-grid-item {
|
||||
padding: .4rem;
|
||||
.bigscreen-item-wrapper {
|
||||
background-image: url(./assets/itemBg.png);
|
||||
background-size: 100% 100%;
|
||||
.bigscreen-item-title-extra {
|
||||
height: 19% !important;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-family: "TitleFont";
|
||||
color: white;
|
||||
}
|
||||
.bigscreen-item-content {
|
||||
height: 81% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
.middle-map-wrapper {
|
||||
position: relative;
|
||||
#middleMap {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 1px solid yellow;
|
||||
}
|
||||
.top-cards-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: absolute;
|
||||
top: 2rem;
|
||||
width: 100%;
|
||||
border: 1px solid white;
|
||||
.top-card-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
.top-card-icon {
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
background-size: 100% 100%;
|
||||
border: 1px solid red;
|
||||
}
|
||||
.top-text-inner {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue
Block a user