190 lines
5.6 KiB
Vue
190 lines
5.6 KiB
Vue
<template>
|
|
<div class="data-home-index">
|
|
<baseBg ref="homebase" :name-val="'home'" top-title=" ">
|
|
<!-- <template #top> </template> -->
|
|
<template #center>
|
|
<el-row style="width: 100%; height: 100%">
|
|
<el-col :span="6" class="left-charts">
|
|
<div class="left-charts-item">
|
|
<customBack top-title="综合数据统计" :top-postion="'left'">
|
|
<template #back>
|
|
<comprehensive></comprehensive>
|
|
</template>
|
|
</customBack>
|
|
</div>
|
|
<div class="left-charts-item">
|
|
<customBack top-title="土地分布数据统计" :top-postion="'left'">
|
|
<template #back>
|
|
<rolllist :items="rollDataList"></rolllist>
|
|
</template>
|
|
</customBack>
|
|
</div>
|
|
<div class="left-charts-item">
|
|
<customBack top-title="种养殖数据统计" :top-postion="'left'">
|
|
<template #back>
|
|
<plantBreedCharts></plantBreedCharts>
|
|
</template>
|
|
</customBack>
|
|
</div>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<centerMap></centerMap>
|
|
</el-col>
|
|
<el-col :span="6" class="right-charts">
|
|
<div class="right-charts-item">
|
|
<customBack top-title="使用投入品数据统计" :top-postion="'left'">
|
|
<template #back>
|
|
<inputs></inputs>
|
|
</template>
|
|
</customBack>
|
|
</div>
|
|
<div class="right-charts-item">
|
|
<customBack top-title="经营主体数据统计" :top-postion="'left'">
|
|
<template #back>
|
|
<entitiesCharts></entitiesCharts>
|
|
</template>
|
|
</customBack>
|
|
</div>
|
|
<div class="right-charts-item">
|
|
<customBack top-title="溯源赋码与扫码数据统计" :top-postion="'left'">
|
|
<template #back>
|
|
<traceCharts></traceCharts>
|
|
</template>
|
|
</customBack>
|
|
</div>
|
|
</el-col>
|
|
</el-row>
|
|
</template>
|
|
</baseBg>
|
|
|
|
<div class="home-index-top-warp">
|
|
<div class="home-index-top" :style="{ 'background-image': 'url(' + getAssetsFile('images/vsualized/home/hometopbg.png') + ')' }">
|
|
<div class="home-data-p">
|
|
<!-- <h3 class="home-title">耿马县农产品销售情况</h3> -->
|
|
<div class="home-data-top">¥1284.624万</div>
|
|
<div class="home-data-contrast">
|
|
<span class="tips">同比去年</span>
|
|
<span class="value">¥4684.629</span>
|
|
<el-icon style="vertical-align: middle" class="contrast-icon" color="#6beff9">
|
|
<TopRight />
|
|
</el-icon>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import centerMap from '@/components/centerMap.vue';
|
|
import comprehensive from './components/comprehensive.vue';
|
|
import plantBreedCharts from './components/plantBreedCharts.vue';
|
|
import entitiesCharts from './components/entitiesCharts.vue';
|
|
import inputs from './components/inputs.vue';
|
|
import traceCharts from './components/traceCharts.vue';
|
|
import rolllist from './components/rolllist.vue';
|
|
import { isEmpty, getAssetsFile } from '@/utils';
|
|
import { ref, reactive, onMounted, onUnmounted } from 'vue';
|
|
|
|
let rollDataList = reactive([
|
|
{ title: '勐腊镇', value: 533.1 },
|
|
{ title: '孟定镇', value: 1069.2 },
|
|
{ title: '孟永镇', value: 411.8 },
|
|
{ title: '耿马镇', value: 429.4 },
|
|
{ title: '大兴乡', value: 162.7 },
|
|
{ title: '勐简乡', value: 2309.9 },
|
|
// 更多项...
|
|
]);
|
|
|
|
// const homebase = ref(null);
|
|
|
|
// onMounted(() => {
|
|
// homebase.value && homebase.value.startTime();
|
|
// });
|
|
|
|
// onUnmounted(() => {
|
|
// homebase.value && homebase.value.chearTime();
|
|
// });
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.data-home-index {
|
|
.home-index-top-warp {
|
|
position: fixed;
|
|
top: 48px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 120px;
|
|
text-align: center;
|
|
padding-top: 24px;
|
|
.home-index-top {
|
|
margin: auto;
|
|
width: calc(100% - 400px);
|
|
height: 100%;
|
|
background-repeat: no-repeat;
|
|
background-position: center bottom;
|
|
background-size: contain;
|
|
position: relative;
|
|
.home-data-p {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 13px;
|
|
width: 100%;
|
|
}
|
|
.home-title {
|
|
display: inline-block;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
transform: skewX(-10deg);
|
|
background: linear-gradient(to bottom, '#ff7e5f', '#548fff');
|
|
-webkit-background-clip: text;
|
|
color: #fff;
|
|
letter-spacing: 4px;
|
|
text-shadow: -2px 0 0 1px #add8f1;
|
|
}
|
|
.home-data-top {
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
letter-spacing: 8px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.home-data-contrast {
|
|
.tips {
|
|
font-size: 10px;
|
|
color: #6beff9;
|
|
}
|
|
.value {
|
|
padding: 0 8px;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.left-charts {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
width: 100%;
|
|
height: 100%;
|
|
flex-direction: column;
|
|
}
|
|
.left-charts-item {
|
|
width: 100%;
|
|
height: calc((100% - 30px) / 3);
|
|
background: transparent;
|
|
}
|
|
|
|
.right-charts {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
width: 100%;
|
|
height: 100%;
|
|
flex-direction: column;
|
|
}
|
|
.right-charts-item {
|
|
width: 100%;
|
|
height: calc((100% - 30px) / 3);
|
|
}
|
|
}
|
|
</style>
|