2026-02-25 15:27:39 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="erp-layout-container">
|
|
|
|
|
<div class="erp-section erp-top-header">
|
|
|
|
|
<div class="erp-card full-card">
|
2026-03-02 18:06:09 +08:00
|
|
|
<ChartTop />
|
2026-02-25 15:27:39 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="erp-section erp-upper-section">
|
|
|
|
|
<div class="erp-col erp-col-1-3">
|
|
|
|
|
<div class="erp-card">
|
2026-03-07 19:08:40 +08:00
|
|
|
<ChartV01 :formParams="FormValues" />
|
2026-02-25 15:27:39 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="erp-col erp-col-1-3">
|
|
|
|
|
<div class="erp-card">
|
2026-03-07 19:08:40 +08:00
|
|
|
<ChartV02 :formParams="FormValues" />
|
2026-02-25 15:27:39 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="erp-col erp-col-1-3">
|
|
|
|
|
<div class="erp-card">
|
2026-03-07 19:08:40 +08:00
|
|
|
<ChartV03 :formParams="FormValues" />
|
2026-02-25 15:27:39 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="erp-section erp-middle-section">
|
|
|
|
|
<div class="erp-col erp-col-1-2">
|
|
|
|
|
<div class="erp-inner-layout">
|
|
|
|
|
<div class="erp-col erp-col-1-2">
|
|
|
|
|
<div class="erp-card">
|
2026-03-07 19:08:40 +08:00
|
|
|
<ChartV04 :formParams="FormValues" />
|
2026-02-25 15:27:39 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="erp-col erp-col-1-2">
|
|
|
|
|
<div class="erp-card">
|
2026-03-07 19:08:40 +08:00
|
|
|
<ChartV05 :formParams="FormValues" />
|
2026-02-25 15:27:39 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="erp-col erp-col-1-2">
|
|
|
|
|
<div class="erp-card">
|
2026-03-07 19:08:40 +08:00
|
|
|
<ChartV06 :formParams="FormValues" />
|
2026-02-25 15:27:39 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="erp-section erp-lower-section">
|
|
|
|
|
<div class="erp-col erp-col-1-2">
|
|
|
|
|
<div class="erp-inner-layout">
|
|
|
|
|
<div class="erp-col erp-col-1-2">
|
|
|
|
|
<div class="erp-card">
|
2026-03-07 19:08:40 +08:00
|
|
|
<ChartV07 :formParams="FormValues" />
|
2026-02-25 15:27:39 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="erp-col erp-col-1-2">
|
|
|
|
|
<div class="erp-card">
|
2026-03-07 19:08:40 +08:00
|
|
|
<ChartV08 :formParams="FormValues" />
|
2026-02-25 15:27:39 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="erp-col erp-col-1-2">
|
|
|
|
|
<div class="erp-card">
|
2026-03-07 19:08:40 +08:00
|
|
|
<ChartV09 :formParams="FormValues" />
|
2026-02-25 15:27:39 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2026-02-26 21:58:09 +08:00
|
|
|
import { ref, watch } from 'vue';
|
2026-03-07 19:08:40 +08:00
|
|
|
import { useRoute } from 'vue-router';
|
2026-03-02 18:06:09 +08:00
|
|
|
import ChartTop from './components/ChartTop.vue'
|
2026-02-26 21:58:09 +08:00
|
|
|
import ChartV01 from './components/ChartV01.vue';
|
|
|
|
|
import ChartV02 from './components/ChartV02.vue';
|
|
|
|
|
import ChartV03 from './components/ChartV03.vue';
|
|
|
|
|
import ChartV04 from './components/ChartV04.vue';
|
|
|
|
|
import ChartV05 from './components/ChartV05.vue';
|
|
|
|
|
import ChartV06 from './components/ChartV06.vue';
|
|
|
|
|
import ChartV07 from './components/ChartV07.vue';
|
2026-02-27 15:27:38 +08:00
|
|
|
import ChartV08 from './components/ChartV08.vue';
|
2026-02-27 16:03:09 +08:00
|
|
|
import ChartV09 from './components/ChartV09.vue';
|
2026-02-26 21:58:09 +08:00
|
|
|
|
2026-03-07 19:08:40 +08:00
|
|
|
const route = useRoute();
|
|
|
|
|
|
|
|
|
|
const FormValues = ref({
|
|
|
|
|
reqParam: route.query.year
|
2026-02-26 21:58:09 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
watch(
|
2026-03-07 19:08:40 +08:00
|
|
|
() => route.query.year,
|
|
|
|
|
(newVal) => {
|
|
|
|
|
FormValues.value.reqParam = newVal;
|
|
|
|
|
},
|
2026-02-26 21:58:09 +08:00
|
|
|
{
|
|
|
|
|
deep: true,
|
|
|
|
|
immediate: true
|
|
|
|
|
}
|
|
|
|
|
);
|
2026-02-25 15:27:39 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.erp-layout-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.erp-section {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.erp-top-header {
|
|
|
|
|
height: 10%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.erp-upper-section,
|
|
|
|
|
.erp-middle-section,
|
|
|
|
|
.erp-lower-section {
|
|
|
|
|
height: 30%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.erp-col {
|
|
|
|
|
height: 100%;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.erp-col-1-3 {
|
|
|
|
|
width: calc((100% - 12px) / 3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.erp-col-1-2 {
|
|
|
|
|
width: calc((100% - 6px) / 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.erp-inner-layout {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.erp-card {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2026-03-04 09:58:11 +08:00
|
|
|
background-color: rgba(15, 52, 96, 0.1);
|
|
|
|
|
border: 1px solid rgba(26, 80, 139, 0.3);
|
2026-02-25 15:27:39 +08:00
|
|
|
border-radius: 8px;
|
2026-02-26 21:58:09 +08:00
|
|
|
padding: 2px;
|
2026-02-25 15:27:39 +08:00
|
|
|
box-sizing: border-box;
|
2026-02-27 17:15:59 +08:00
|
|
|
display: flex;
|
2026-02-25 15:27:39 +08:00
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: #e0e6ff;
|
2026-03-04 09:58:11 +08:00
|
|
|
backdrop-filter: blur(2px);
|
|
|
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
2026-02-25 15:27:39 +08:00
|
|
|
min-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.full-card {
|
|
|
|
|
width: 100%;
|
2026-03-09 22:05:19 +08:00
|
|
|
|
2026-02-25 15:27:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.erp-card:hover {
|
2026-03-04 09:58:11 +08:00
|
|
|
box-shadow: 0 4px 12px rgba(60, 156, 255, 0.2);
|
|
|
|
|
border-color: rgba(60, 156, 255, 0.6);
|
2026-02-25 15:27:39 +08:00
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.erp-card h3 {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
background: #3c9cff;
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.erp-card p {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
opacity: 0.75;
|
|
|
|
|
color: #b4c7e7;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1600px) {
|
|
|
|
|
.erp-layout-container {
|
|
|
|
|
padding: 6px;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
.erp-section {
|
|
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
.erp-col-1-3 {
|
|
|
|
|
width: calc((100% - 8px) / 3);
|
|
|
|
|
}
|
|
|
|
|
.erp-col-1-2 {
|
|
|
|
|
width: calc((100% - 4px) / 2);
|
|
|
|
|
}
|
|
|
|
|
.erp-inner-layout {
|
|
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
.erp-card {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
.erp-card h3 {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
.erp-card p {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.erp-layout-container {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: auto;
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
padding: 6px;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
.erp-section {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: auto !important;
|
|
|
|
|
min-height: 120px;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
}
|
|
|
|
|
.erp-col-1-3,
|
|
|
|
|
.erp-col-1-2 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc((100% - 12px) / 3);
|
|
|
|
|
}
|
|
|
|
|
.erp-inner-layout {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
.erp-card {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-height: 900px) {
|
|
|
|
|
.erp-layout-container {
|
|
|
|
|
padding: 6px;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
.erp-section {
|
|
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
.erp-card {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
.erp-card h3 {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
}
|
|
|
|
|
.erp-card p {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|