大屏页面初始化
This commit is contained in:
243
screen-vue/src/views/screen/Erp/components/ChartTop.vue
Normal file
243
screen-vue/src/views/screen/Erp/components/ChartTop.vue
Normal file
@@ -0,0 +1,243 @@
|
||||
<template>
|
||||
<div class="chart-top-container">
|
||||
<div class="card-item" v-for="(item, index) in cardList" :key="index">
|
||||
<div class="card-left">
|
||||
<div class="icon-box">
|
||||
<img
|
||||
:src="item.iconImg"
|
||||
alt="icon"
|
||||
class="icon-img"
|
||||
:style="{ filter: item.iconFilter }"
|
||||
>
|
||||
</div>
|
||||
<div class="card-text">
|
||||
<div class="module-name">{{ item.module }}</div>
|
||||
<div class="desc-text">{{ item.desc }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-right">
|
||||
<div class="num-value">{{ item.value }}</div>
|
||||
<div class="num-label">{{ item.label }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted, watch } from 'vue'
|
||||
|
||||
const cardList = ref([
|
||||
{
|
||||
module: '生产管理',
|
||||
desc: '业务运行指标',
|
||||
value: 12,
|
||||
label: '指标项',
|
||||
iconImg: '/assets/logo/production.png',
|
||||
iconFilter: 'brightness(0.95) contrast(1.1)'
|
||||
},
|
||||
{
|
||||
module: '基建管理',
|
||||
desc: '工程建设指标',
|
||||
value: 7,
|
||||
label: '指标项',
|
||||
iconImg: '/assets/icons/construction.png',
|
||||
iconFilter: 'brightness(0.95) contrast(1.1)'
|
||||
},
|
||||
{
|
||||
module: '项目管理',
|
||||
desc: '项目管控指标',
|
||||
value: 8,
|
||||
label: '指标项',
|
||||
iconImg: '/assets/icons/project.png',
|
||||
iconFilter: 'brightness(0.95) contrast(1.1)'
|
||||
},
|
||||
{
|
||||
module: '物资管理',
|
||||
desc: '物资调配指标',
|
||||
value: 8,
|
||||
label: '指标项',
|
||||
iconImg: '/assets/icons/material.png',
|
||||
iconFilter: 'brightness(0.95) contrast(1.1)'
|
||||
},
|
||||
{
|
||||
module: '综合管理',
|
||||
desc: '综合管控指标',
|
||||
value: 15,
|
||||
label: '指标项',
|
||||
iconImg: '/assets/icons/comprehensive.png',
|
||||
iconFilter: 'brightness(0.95) contrast(1.1)'
|
||||
}
|
||||
])
|
||||
|
||||
const resizeHandler = () => {
|
||||
const container = document.querySelector('.chart-top-container')
|
||||
if (container) {
|
||||
const height = container.parentElement.clientHeight
|
||||
container.style.height = `${height}px`
|
||||
}
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
resizeHandler()
|
||||
window.addEventListener('resize', resizeHandler)
|
||||
})
|
||||
|
||||
watch(
|
||||
() => {},
|
||||
() => {
|
||||
window.removeEventListener('resize', resizeHandler)
|
||||
},
|
||||
{ once: true }
|
||||
)
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.chart-top-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
padding: 2px 4px;
|
||||
box-sizing: border-box;
|
||||
flex-wrap: wrap;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.card-item {
|
||||
flex: 1;
|
||||
min-width: 160px;
|
||||
height: 85%;
|
||||
background: rgba(15, 52, 96, 0.95);
|
||||
border: 1px solid #1a508b;
|
||||
border-radius: 8px;
|
||||
padding: 0 8px; /* 从0 12px缩减为0 8px */
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.card-item:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(60, 156, 255, 0.3);
|
||||
border-color: #3c9cff;
|
||||
}
|
||||
|
||||
.card-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px; /* 从10px缩减为6px */
|
||||
}
|
||||
|
||||
.icon-box {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: transparent;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border: 1px solid rgba(224, 230, 255, 0.2);
|
||||
border-radius: 8px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.icon-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
opacity: 0.9;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.icon-box:hover .icon-img {
|
||||
opacity: 1;
|
||||
transform: scale(1.05);
|
||||
filter: brightness(1.1) contrast(1.2);
|
||||
}
|
||||
|
||||
.card-text {
|
||||
color: #e0e6ff;
|
||||
}
|
||||
|
||||
.module-name {
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.desc-text {
|
||||
font-size: 11px;
|
||||
opacity: 0.7;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.card-right {
|
||||
text-align: right;
|
||||
color: #e0e6ff;
|
||||
}
|
||||
|
||||
.num-value {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
background: linear-gradient(to right, #3c9cff, #7472fe);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
|
||||
.num-label {
|
||||
font-size: 11px;
|
||||
opacity: 0.7;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
@media (max-width: 1600px) {
|
||||
.card-item {
|
||||
min-width: 140px;
|
||||
padding: 0 6px;
|
||||
}
|
||||
.icon-box {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
}
|
||||
.module-name {
|
||||
font-size: 14px;
|
||||
}
|
||||
.num-value {
|
||||
font-size: 22px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.chart-top-container {
|
||||
flex-direction: column;
|
||||
height: auto !important;
|
||||
gap: 4px;
|
||||
padding: 2px;
|
||||
}
|
||||
.card-item {
|
||||
width: 100%;
|
||||
height: 80px;
|
||||
min-width: unset;
|
||||
padding: 0 8px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-height: 900px) {
|
||||
.card-item {
|
||||
height: 80%;
|
||||
}
|
||||
.icon-box {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
.num-value {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user