2024-04-20 17:26:03 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="projectContent">
|
|
|
|
|
<div class="left">
|
2024-04-21 14:15:04 +08:00
|
|
|
<leftTop class="leftTop"></leftTop>
|
|
|
|
|
<leftBottom class="leftBottom"></leftBottom>
|
2024-04-20 17:26:03 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="center">
|
2024-04-21 14:15:04 +08:00
|
|
|
<centerTop class="centerTop"></centerTop>
|
|
|
|
|
<centerBottom class="centerBottom"></centerBottom>
|
2024-04-20 17:26:03 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="right">
|
2024-04-21 14:15:04 +08:00
|
|
|
<rightTop class="rightTop"></rightTop>
|
|
|
|
|
<rightCenter class="rightCenter"></rightCenter>
|
|
|
|
|
<rightBottom class="rightBottom"></rightBottom>
|
2024-04-20 17:26:03 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import leftTop from "@/views/commandScreen/commandCenter/leftTop.vue";
|
|
|
|
|
import leftBottom from "@/views/commandScreen/commandCenter/leftBottom.vue";
|
|
|
|
|
import centerTop from "@/views/commandScreen/commandCenter/centerTop.vue";
|
|
|
|
|
import centerBottom from "@/views/commandScreen/commandCenter/centerBottom.vue";
|
|
|
|
|
import rightTop from "@/views/commandScreen/commandCenter/rightTop.vue";
|
|
|
|
|
import rightCenter from "@/views/commandScreen/commandCenter/rightCenter.vue";
|
|
|
|
|
import rightBottom from "@/views/commandScreen/commandCenter/rightBottom.vue";
|
|
|
|
|
import { GlobalStore } from "@/stores";
|
|
|
|
|
const store = GlobalStore();
|
|
|
|
|
import { getWorkerStatisticsCountApi, getProjectDetail } from "@/api/modules/projectOverview";
|
|
|
|
|
import { ref, onMounted, onBeforeUnmount,nextTick } from "vue";
|
|
|
|
|
const statisticsCount = ref(null as any);
|
|
|
|
|
|
|
|
|
|
const projectData = ref(null as any);
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.projectContent {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
.left {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 26%;
|
|
|
|
|
.leftTop {
|
2024-04-21 14:15:04 +08:00
|
|
|
height: 35%;
|
2024-04-20 17:26:03 +08:00
|
|
|
}
|
2024-04-21 14:15:04 +08:00
|
|
|
.leftBottom {
|
|
|
|
|
height: 65%;
|
2024-04-20 17:26:03 +08:00
|
|
|
margin: 3% 0 3% 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.center {
|
|
|
|
|
width: 46%;
|
|
|
|
|
margin: 0 1%;
|
|
|
|
|
|
|
|
|
|
.centerTop {
|
2024-04-21 14:15:04 +08:00
|
|
|
height: 55%;
|
|
|
|
|
// margin-bottom: 3%;
|
2024-04-20 17:26:03 +08:00
|
|
|
}
|
|
|
|
|
.centerBottom {
|
2024-04-21 14:15:04 +08:00
|
|
|
height: 45%;
|
|
|
|
|
margin: 2% 0 0 0;
|
2024-04-20 17:26:03 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.right {
|
|
|
|
|
width: 26%;
|
|
|
|
|
|
|
|
|
|
.rightTop {
|
|
|
|
|
height: 32%;
|
|
|
|
|
}
|
|
|
|
|
.rightCenter {
|
|
|
|
|
height: 33%;
|
|
|
|
|
margin: 3% 0 3% 0;
|
|
|
|
|
}
|
|
|
|
|
.rightBottom {
|
|
|
|
|
height: 32%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|