¶Ô±ÈÐÂÎļþ |
| | |
| | | <template> |
| | | <div class="carbon-management"> |
| | | <!-- 页é¢å¤´é¨ --> |
| | | <div class="page-header"> |
| | | <div class="header-content"> |
| | | <h1 class="page-title">ç¢³ææ¾ç®¡çç³»ç»</h1> |
| | | <p class="page-subtitle">åºäºISO 14064æ å · GHG Protocolæ ¸ç®æ å</p> |
| | | </div> |
| | | <div class="header-stats"> |
| | | <div class="stat-item"> |
| | | <span class="stat-label">æ»ç¢³ææ¾é</span> |
| | | <span class="stat-value">{{totalEmissions}} tCOâe</span> |
| | | </div> |
| | | <div class="stat-item"> |
| | | <span class="stat-label">æ¬æåæ</span> |
| | | <span class="stat-value reduction">-{{monthlyReduction}}%</span> |
| | | </div> |
| | | <div class="stat-item"> |
| | | <span class="stat-label">碳ä¸åè¿åº¦</span> |
| | | <span class="stat-value">{{neutralProgress}}%</span> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- 主è¦å
容åºå --> |
| | | <div class="dashboard-content"> |
| | | <!-- 顶鍿°æ®é¢æ¿ --> |
| | | <div class="top-panels"> |
| | | <div class="data-panel top-left"> |
| | | <div class="panel-title">å½åç¢³ææ¾</div> |
| | | <div class="panel-value">{{carbonData.scope1}} <span class="unit">tCOâe</span></div> |
| | | <div class="panel-subtitle">èå´1ç´æ¥ææ¾</div> |
| | | </div> |
| | | <div class="data-panel top-center"> |
| | | <div class="panel-title">è½èçæµ</div> |
| | | <div class="panel-value">{{carbonData.scope2}} <span class="unit">tCOâe</span></div> |
| | | <div class="panel-subtitle">èå´2é´æ¥ææ¾</div> |
| | | </div> |
| | | <div class="data-panel top-right"> |
| | | <div class="panel-title">ä¾åºé¾ææ¾</div> |
| | | <div class="panel-value">{{carbonData.scope3}} <span class="unit">tCOâe</span></div> |
| | | <div class="panel-subtitle">èå´3ä¾åºé¾ææ¾</div> |
| | | </div> |
| | | <div class="data-panel top-far-right"> |
| | | <div class="panel-title">åæè¿åº¦</div> |
| | | <div class="panel-value">{{neutralProgress}} <span class="unit">%</span></div> |
| | | <div class="panel-subtitle">碳ä¸åç®æ </div> |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- ä¸å¿ä¸»è§å¾åºå --> |
| | | <div class="center-main-view"> |
| | | <!-- 左侧æ§å¶é¢æ¿ --> |
| | | <div class="left-control-panel"> |
| | | <div class="control-section"> |
| | | <div class="section-title">ç¢³ææ¾èå´</div> |
| | | <el-radio-group v-model="selectedScope" @change="updateScopeData" class="vertical-radio"> |
| | | <el-radio-button :value="'all'">å
¨é¨èå´</el-radio-button> |
| | | <el-radio-button :value="'scope1'">èå´1</el-radio-button> |
| | | <el-radio-button :value="'scope2'">èå´2</el-radio-button> |
| | | <el-radio-button :value="'scope3'">èå´3</el-radio-button> |
| | | </el-radio-group> |
| | | </div> |
| | | <div class="control-section"> |
| | | <div class="section-title">çæµå±çº§</div> |
| | | <el-radio-group v-model="heatmapLevel" @change="updateHeatmapLevel" class="vertical-radio"> |
| | | <el-radio-button :value="'device'">设å¤çº§</el-radio-button> |
| | | <el-radio-button :value="'line'">产线级</el-radio-button> |
| | | <el-radio-button :value="'enterprise'">ä¼ä¸çº§</el-radio-button> |
| | | </el-radio-group> |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- ä¸å¿çåå¾ --> |
| | | <div class="main-heatmap"> |
| | | <div class="heatmap-header"> |
| | | <h2 class="main-title">碳足迹çåå¾åæ</h2> |
| | | <div class="date-selector"> |
| | | <el-date-picker |
| | | v-model="selectedDate" |
| | | type="date" |
| | | placeholder="éæ©æ¥æ" |
| | | size="small" |
| | | @change="updateHeatmapData" |
| | | /> |
| | | </div> |
| | | </div> |
| | | <div class="heatmap-view"> |
| | | <Echarts ref="heatmapChart" |
| | | :series="heatmapSeries" |
| | | :xAxis="heatmapXAxis" |
| | | :yAxis="heatmapYAxis" |
| | | :tooltip="heatmapTooltip" |
| | | :visualMap="heatmapVisualMap" |
| | | :options="{backgroundColor: 'transparent', textStyle: {color: '#B8C8E0'}}" |
| | | style="height: 450px"></Echarts> |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- å³ä¾§æ°æ®é¢æ¿ --> |
| | | <div class="right-data-panel"> |
| | | <div class="data-section"> |
| | | <div class="section-title">宿¶çæ§</div> |
| | | <div class="mini-chart"> |
| | | <Echarts ref="realtimeChart" |
| | | :series="realtimeSeries" |
| | | :xAxis="realtimeXAxis" |
| | | :chartStyle="chartStyle" |
| | | :yAxis="realtimeYAxis" |
| | | :tooltip="realtimeTooltip" |
| | | :options="{backgroundColor: 'transparent', textStyle: {color: '#B8C8E0'}}" |
| | | style="height: 300px"></Echarts> |
| | | </div> |
| | | </div> |
| | | <div class="data-section"> |
| | | <div class="section-title">è¶å¿åæ</div> |
| | | <div class="trend-controls"> |
| | | <el-radio-group v-model="trendPeriod" size="small" @change="updateTrendData"> |
| | | <el-radio-button :value="'week'">å¨</el-radio-button> |
| | | <el-radio-button :value="'month'">æ</el-radio-button> |
| | | <el-radio-button :value="'year'">å¹´</el-radio-button> |
| | | </el-radio-group> |
| | | </div> |
| | | <div class="mini-chart"> |
| | | <Echarts ref="trendChart" |
| | | :series="trendSeries" |
| | | :xAxis="trendXAxis" |
| | | :yAxis="trendYAxis" |
| | | :tooltip="trendTooltip" |
| | | :chartStyle="chartStyle" |
| | | :legend="trendLegend" |
| | | :options="{backgroundColor: 'transparent', textStyle: {color: '#B8C8E0'}}" |
| | | style="height: 200px"></Echarts> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- åºé¨è¿åº¦é¢æ¿ --> |
| | | <div class="bottom-progress-panel"> |
| | | <div class="progress-section"> |
| | | <div class="progress-title">2024å¹´åæç®æ </div> |
| | | <div class="progress-data"> |
| | | <span class="current">{{reductionTarget.current}}</span> |
| | | <span class="separator">/</span> |
| | | <span class="target">{{reductionTarget.target}} tCOâe</span> |
| | | </div> |
| | | <el-progress :percentage="reductionTarget.percentage" :stroke-width="6" color="#00E676"/> |
| | | </div> |
| | | <div class="progress-section"> |
| | | <div class="progress-title">碳ä¸åè¿åº¦</div> |
| | | <div class="progress-data"> |
| | | <span class="current">{{neutralTarget.current}}</span> |
| | | <span class="separator">/</span> |
| | | <span class="target">{{neutralTarget.target}} tCOâe</span> |
| | | </div> |
| | | <el-progress :percentage="neutralTarget.percentage" :stroke-width="6" color="#00D4FF"/> |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- åºé¨æ°æ®è¡¨æ ¼ --> |
| | | <div class="bottom-data-table"> |
| | | <div class="table-panel"> |
| | | <div class="table-header"> |
| | | <h3 class="table-title">ç¢³ææ¾è¯¦ç»æ°æ®</h3> |
| | | <div class="table-controls"> |
| | | <el-input |
| | | v-model="searchKeyword" |
| | | placeholder="æç´¢è®¾å¤æäº§çº¿" |
| | | size="small" |
| | | style="width: 200px; margin-right: 10px;" |
| | | /> |
| | | <el-button type="primary" size="small" @click="exportData">å¯¼åºæ°æ®</el-button> |
| | | </div> |
| | | </div> |
| | | <el-table :data="filteredTableData" style="width: 100%" height="180"> |
| | | <el-table-column prop="name" label="设å¤/产线" width="150"/> |
| | | <el-table-column prop="type" label="ç±»å" width="100"/> |
| | | <el-table-column prop="scope1" label="èå´1ææ¾" width="120"/> |
| | | <el-table-column prop="scope2" label="èå´2ææ¾" width="120"/> |
| | | <el-table-column prop="scope3" label="èå´3ææ¾" width="120"/> |
| | | <el-table-column prop="total" label="æ»ææ¾é" width="120"/> |
| | | <el-table-column prop="efficiency" label="碳æç" width="100"/> |
| | | <el-table-column prop="status" label="ç¶æ" width="100"> |
| | | <template #default="scope"> |
| | | <el-tag :type="getStatusType(scope.row.status)">{{scope.row.status}}</el-tag> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | |
| | | <script setup> |
| | | import { ref, reactive, onMounted, onBeforeUnmount, computed } from 'vue' |
| | | import * as echarts from 'echarts' |
| | | import Echarts from '@/components/Echarts/echarts.vue' |
| | | |
| | | // ååºå¼æ°æ® |
| | | const selectedScope = ref('all') |
| | | const heatmapLevel = ref('device') |
| | | const selectedDate = ref(new Date()) |
| | | const trendPeriod = ref('week') |
| | | const searchKeyword = ref('') |
| | | |
| | | // ç¢³ææ¾æ°æ® |
| | | const carbonData = ref({ |
| | | scope1: 125.6, |
| | | scope2: 89.3, |
| | | scope3: 234.7 |
| | | }) |
| | | const chartStyle = { |
| | | width: '96%', |
| | | height: '110%' // 设置å¾è¡¨å®¹å¨çé«åº¦ |
| | | } |
| | | // 计ç®å±æ§ |
| | | const totalEmissions = computed(() => { |
| | | return (carbonData.value.scope1 + carbonData.value.scope2 + carbonData.value.scope3).toFixed(1) |
| | | }) |
| | | |
| | | const monthlyReduction = ref(8.5) |
| | | |
| | | // 计ç®ç¢³ä¸åè¿åº¦ç¾åæ¯ |
| | | const neutralProgress = computed(() => { |
| | | return Math.round(neutralTarget.value.percentage) |
| | | }) |
| | | |
| | | // åæç®æ æ°æ® |
| | | const reductionTarget = ref({ |
| | | current: 320.5, |
| | | target: 500, |
| | | percentage: 64.1 |
| | | }) |
| | | |
| | | const neutralTarget = ref({ |
| | | current: 1250, |
| | | target: 3800, |
| | | percentage: 32.9 |
| | | }) |
| | | |
| | | // 宿¶çæ§å¾è¡¨é
ç½® |
| | | const realtimeSeries = ref([ |
| | | { |
| | | name: '宿¶ç¢³ææ¾', |
| | | type: 'line', |
| | | smooth: true, |
| | | data: generateRealtimeData(), |
| | | itemStyle: { |
| | | color: '#FF6B6B' |
| | | }, |
| | | areaStyle: { |
| | | color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ |
| | | { offset: 0, color: 'rgba(255, 107, 107, 0.3)' }, |
| | | { offset: 1, color: 'rgba(255, 107, 107, 0.1)' } |
| | | ]) |
| | | } |
| | | } |
| | | ]) |
| | | |
| | | const realtimeXAxis = [{ |
| | | type: 'category', |
| | | data: Array.from({length: 24}, (_, i) => `${i.toString().padStart(2, '0')}:00`), |
| | | axisLabel: { color: '#B8C8E0' } |
| | | }] |
| | | |
| | | const realtimeYAxis = [{ |
| | | type: 'value', |
| | | name: 'tCOâe/h', |
| | | axisLabel: { color: '#B8C8E0' }, |
| | | nameTextStyle: { color: '#B8C8E0' } |
| | | }] |
| | | |
| | | const realtimeTooltip = { |
| | | trigger: 'axis', |
| | | formatter: '{b}: {c} tCOâe/h' |
| | | } |
| | | |
| | | // çåå¾é
ç½® |
| | | const heatmapSeries = ref([ |
| | | { |
| | | name: 'ç¢³ææ¾é', |
| | | type: 'heatmap', |
| | | data: generateHeatmapData(), |
| | | label: { |
| | | show: false |
| | | }, |
| | | emphasis: { |
| | | itemStyle: { |
| | | shadowBlur: 10, |
| | | shadowColor: 'rgba(0, 0, 0, 0.5)' |
| | | } |
| | | } |
| | | } |
| | | ]) |
| | | |
| | | const heatmapXAxis = [{ |
| | | type: 'category', |
| | | data: Array.from({length: 24}, (_, i) => `${i}:00`), |
| | | splitArea: { show: true }, |
| | | axisLabel: { color: '#B8C8E0' } |
| | | }] |
| | | |
| | | const heatmapYAxis = [{ |
| | | type: 'category', |
| | | data: ['设å¤A', '设å¤B', '设å¤C', '设å¤D', '设å¤E', '设å¤F', '设å¤G'], |
| | | splitArea: { show: true }, |
| | | axisLabel: { color: '#B8C8E0' } |
| | | }] |
| | | |
| | | const heatmapTooltip = { |
| | | trigger: 'item', |
| | | formatter: function (params) { |
| | | const [hour, device] = params.data |
| | | const value = params.value[2] |
| | | return `设å¤: ${heatmapYAxis[0].data[device]}<br/>æ¶é´: ${hour}:00<br/>ç¢³ææ¾é: ${value} tCOâe` |
| | | } |
| | | } |
| | | |
| | | const heatmapVisualMap = ref({ |
| | | min: 0, |
| | | max: 50, |
| | | calculable: true, |
| | | orient: 'horizontal', |
| | | left: 'center', |
| | | bottom: '5%', |
| | | inRange: { |
| | | color: ['#313695', '#4575b4', '#74add1', '#abd9e9', '#e0f3f8', '#ffffbf', '#fee090', '#fdae61', '#f46d43', '#d73027', '#a50026'] |
| | | }, |
| | | textStyle: { color: '#B8C8E0' } |
| | | }) |
| | | |
| | | // è¶å¿åæå¾è¡¨é
ç½® |
| | | const trendSeries = ref([ |
| | | { |
| | | name: 'èå´1', |
| | | type: 'line', |
| | | data: [120, 132, 101, 134, 90, 230, 210], |
| | | itemStyle: { color: '#FF6B6B' } |
| | | }, |
| | | { |
| | | name: 'èå´2', |
| | | type: 'line', |
| | | data: [220, 182, 191, 234, 290, 330, 310], |
| | | itemStyle: { color: '#4ECDC4' } |
| | | }, |
| | | { |
| | | name: 'èå´3', |
| | | type: 'line', |
| | | data: [150, 232, 201, 154, 190, 330, 410], |
| | | itemStyle: { color: '#45B7D1' } |
| | | } |
| | | ]) |
| | | |
| | | const trendXAxis = [{ |
| | | type: 'category', |
| | | data: ['å¨ä¸', 'å¨äº', 'å¨ä¸', 'å¨å', 'å¨äº', 'å¨å
', '卿¥'], |
| | | axisLabel: { color: '#B8C8E0' } |
| | | }] |
| | | |
| | | const trendYAxis = [{ |
| | | type: 'value', |
| | | name: 'tCOâe', |
| | | axisLabel: { color: '#B8C8E0' }, |
| | | nameTextStyle: { color: '#B8C8E0' } |
| | | }] |
| | | |
| | | const trendTooltip = { |
| | | trigger: 'axis' |
| | | } |
| | | |
| | | const trendLegend = { |
| | | data: ['èå´1', 'èå´2', 'èå´3'], |
| | | textStyle: { color: '#B8C8E0' } |
| | | } |
| | | |
| | | // è¡¨æ ¼æ°æ® |
| | | const carbonTableData = ref([ |
| | | { name: 'ç产线A', type: '产线', scope1: 45.2, scope2: 32.1, scope3: 18.7, total: 96.0, efficiency: 'è¯å¥½', status: 'æ£å¸¸' }, |
| | | { name: '设å¤B-01', type: '设å¤', scope1: 12.5, scope2: 8.3, scope3: 5.2, total: 26.0, efficiency: 'ä¼ç§', status: 'æ£å¸¸' }, |
| | | { name: 'ç产线C', type: '产线', scope1: 38.7, scope2: 28.9, scope3: 15.4, total: 83.0, efficiency: 'è¯å¥½', status: 'åè¦' }, |
| | | { name: '设å¤D-02', type: '设å¤', scope1: 15.8, scope2: 11.2, scope3: 7.1, total: 34.1, efficiency: 'ä¸è¬', status: 'æ£å¸¸' }, |
| | | { name: 'ç产线E', type: '产线', scope1: 52.3, scope2: 39.6, scope3: 22.8, total: 114.7, efficiency: 'å¾
ä¼å', status: 'åè¦' } |
| | | ]) |
| | | |
| | | // çæå®æ¶æ°æ® |
| | | function generateRealtimeData() { |
| | | return Array.from({length: 24}, () => (Math.random() * 20 + 10).toFixed(1)) |
| | | } |
| | | |
| | | // çæçå徿°æ® |
| | | function generateHeatmapData() { |
| | | const data = [] |
| | | let yAxisLength = 7 // é»è®¤è®¾å¤çº§ |
| | | let baseMultiplier = 1 // åºç¡åæ° |
| | | |
| | | // æ ¹æ®å±çº§ç¡®å®Yè½´é¿åº¦åæ°æ®èå´ |
| | | if (heatmapLevel.value === 'line') { |
| | | yAxisLength = 5 |
| | | baseMultiplier = 2 // äº§çº¿çº§æ°æ®æ´å¤§ |
| | | } else if (heatmapLevel.value === 'enterprise') { |
| | | yAxisLength = 3 |
| | | baseMultiplier = 4 // ä¼ä¸çº§æ°æ®æå¤§ |
| | | } |
| | | |
| | | for (let i = 0; i < yAxisLength; i++) { |
| | | for (let j = 0; j < 24; j++) { |
| | | let value |
| | | // ç®åçæ¶é´æ®µé»è¾ |
| | | if (j >= 8 && j <= 18) { |
| | | // 工使¶é´ææ¾éè¾é« |
| | | value = Math.random() * 30 + 20 |
| | | } else if (j >= 19 && j <= 22) { |
| | | // æé´ææ¾éä¸ç |
| | | value = Math.random() * 20 + 10 |
| | | } else { |
| | | // æ·±å¤ååæ¨ææ¾éè¾ä½ |
| | | value = Math.random() * 10 + 2 |
| | | } |
| | | |
| | | // æ·»å 设å¤å·®å¼åå±çº§åæ° |
| | | value *= (0.8 + i * 0.1) * baseMultiplier |
| | | |
| | | data.push([j, i, Math.round(value * 10) / 10]) |
| | | } |
| | | } |
| | | return data |
| | | } |
| | | |
| | | // æ´æ°èå´æ°æ® |
| | | function updateScopeData() { |
| | | // æ ¹æ®éæ©çèå´æ´æ°ææç¸å
³å¾è¡¨æ°æ® |
| | | const scopeMultiplier = { |
| | | 'all': 1, |
| | | 'scope1': 0.3, |
| | | 'scope2': 0.4, |
| | | 'scope3': 0.3 |
| | | } |
| | | |
| | | const multiplier = scopeMultiplier[selectedScope.value] || 1 |
| | | |
| | | // æ´æ°ç¢³ææ¾æ°æ®æ¾ç¤º |
| | | if (selectedScope.value === 'all') { |
| | | carbonData.value = { |
| | | scope1: 125.6, |
| | | scope2: 89.3, |
| | | scope3: 234.7 |
| | | } |
| | | } else { |
| | | const baseTotal = 125.6 + 89.3 + 234.7 |
| | | carbonData.value = { |
| | | scope1: selectedScope.value === 'scope1' ? 125.6 : 0, |
| | | scope2: selectedScope.value === 'scope2' ? 89.3 : 0, |
| | | scope3: selectedScope.value === 'scope3' ? 234.7 : 0 |
| | | } |
| | | } |
| | | |
| | | // æ´æ°çå徿°æ® |
| | | heatmapSeries.value[0].data = generateHeatmapData().map(item => [ |
| | | item[0], item[1], Math.round(item[2] * multiplier * 10) / 10 |
| | | ]) |
| | | |
| | | // æ´æ°å®æ¶çæ§æ°æ® |
| | | realtimeSeries.value[0].data = generateRealtimeData().map(val => |
| | | Math.round(parseFloat(val) * multiplier * 10) / 10 |
| | | ) |
| | | } |
| | | |
| | | // æ´æ°çåå¾å±çº§ |
| | | function updateHeatmapLevel() { |
| | | // æ ¹æ®å±çº§æ´æ°Yè½´æ°æ®åvisualMapèå´ |
| | | if (heatmapLevel.value === 'device') { |
| | | heatmapYAxis[0].data = ['é
çA', 'å缩æºB', 'å·å´å¡C', '飿ºD', 'æ³µE', 'ååå¨F', 'çµæºG'] |
| | | heatmapVisualMap.value.max = 50 |
| | | } else if (heatmapLevel.value === 'line') { |
| | | heatmapYAxis[0].data = ['ç产线1', 'ç产线2', 'ç产线3', 'ç产线4', 'ç产线5'] |
| | | heatmapVisualMap.value.max = 100 |
| | | } else { |
| | | heatmapYAxis[0].data = ['ååºA', 'ååºB', 'ååºC'] |
| | | heatmapVisualMap.value.max = 200 |
| | | } |
| | | |
| | | // æ´æ°çå徿°æ® |
| | | heatmapSeries.value[0].data = generateHeatmapData() |
| | | |
| | | // æ´æ°è¡¨æ ¼æ°æ®ä»¥å¹é
å½åå±çº§ |
| | | updateTableDataForLevel() |
| | | } |
| | | |
| | | // æ ¹æ®å±çº§æ´æ°è¡¨æ ¼æ°æ® |
| | | function updateTableDataForLevel() { |
| | | const levelConfigs = { |
| | | device: [ |
| | | { name: 'é
çA', type: '设å¤', scope1: 45.2, scope2: 32.1, scope3: 18.7, total: 96.0, efficiency: 'è¯å¥½', status: 'æ£å¸¸' }, |
| | | { name: 'å缩æºB', type: '设å¤', scope1: 38.5, scope2: 28.3, scope3: 15.2, total: 82.0, efficiency: 'ä¼ç§', status: 'æ£å¸¸' }, |
| | | { name: 'å·å´å¡C', type: '设å¤', scope1: 22.8, scope2: 18.9, scope3: 12.3, total: 54.0, efficiency: 'è¯å¥½', status: 'åè¦' }, |
| | | { name: '飿ºD', type: '设å¤', scope1: 15.6, scope2: 12.4, scope3: 8.1, total: 36.1, efficiency: 'ä¸è¬', status: 'æ£å¸¸' }, |
| | | { name: 'æ³µE', type: '设å¤', scope1: 12.3, scope2: 9.8, scope3: 6.4, total: 28.5, efficiency: 'ä¼ç§', status: 'æ£å¸¸' } |
| | | ], |
| | | line: [ |
| | | { name: 'ç产线1', type: '产线', scope1: 125.6, scope2: 89.3, scope3: 56.8, total: 271.7, efficiency: 'è¯å¥½', status: 'æ£å¸¸' }, |
| | | { name: 'ç产线2', type: '产线', scope1: 98.4, scope2: 72.1, scope3: 45.2, total: 215.7, efficiency: 'ä¼ç§', status: 'æ£å¸¸' }, |
| | | { name: 'ç产线3', type: '产线', scope1: 87.2, scope2: 65.8, scope3: 41.6, total: 194.6, efficiency: 'è¯å¥½', status: 'åè¦' }, |
| | | { name: 'ç产线4', type: '产线', scope1: 76.9, scope2: 58.3, scope3: 37.1, total: 172.3, efficiency: 'ä¸è¬', status: 'æ£å¸¸' }, |
| | | { name: 'ç产线5', type: '产线', scope1: 65.7, scope2: 49.2, scope3: 31.8, total: 146.7, efficiency: 'å¾
ä¼å', status: 'åè¦' } |
| | | ], |
| | | enterprise: [ |
| | | { name: 'ååºA', type: 'ååº', scope1: 456.8, scope2: 334.7, scope3: 212.5, total: 1004.0, efficiency: 'è¯å¥½', status: 'æ£å¸¸' }, |
| | | { name: 'ååºB', type: 'ååº', scope1: 387.2, scope2: 289.6, scope3: 184.3, total: 861.1, efficiency: 'ä¼ç§', status: 'æ£å¸¸' }, |
| | | { name: 'ååºC', type: 'ååº', scope1: 298.5, scope2: 223.8, scope3: 142.7, total: 665.0, efficiency: 'è¯å¥½', status: 'åè¦' } |
| | | ] |
| | | } |
| | | |
| | | carbonTableData.value = levelConfigs[heatmapLevel.value] || levelConfigs.device |
| | | } |
| | | |
| | | // æ´æ°çå徿°æ®ï¼æ¥æååæ¶ï¼ |
| | | function updateHeatmapData() { |
| | | heatmapSeries.value[0].data = generateHeatmapData() |
| | | |
| | | // åæ¶æ´æ°å
¶ä»ç¸å
³æ°æ® |
| | | updateScopeData() |
| | | } |
| | | |
| | | // æ´æ°è¶å¿æ°æ® |
| | | function updateTrendData() { |
| | | const trendDataConfigs = { |
| | | week: { |
| | | xAxisData: ['å¨ä¸', 'å¨äº', 'å¨ä¸', 'å¨å', 'å¨äº', 'å¨å
', '卿¥'], |
| | | scope1Data: [120, 132, 101, 134, 90, 80, 75], |
| | | scope2Data: [220, 182, 191, 234, 190, 150, 140], |
| | | scope3Data: [150, 232, 201, 154, 190, 120, 110] |
| | | }, |
| | | month: { |
| | | xAxisData: ['1æ', '2æ', '3æ', '4æ', '5æ', '6æ', '7æ', '8æ', '9æ', '10æ', '11æ', '12æ'], |
| | | scope1Data: [1200, 1150, 1300, 1250, 1180, 1320, 1280, 1350, 1220, 1290, 1160, 1100], |
| | | scope2Data: [2200, 2100, 2350, 2280, 2150, 2400, 2320, 2450, 2180, 2380, 2120, 2050], |
| | | scope3Data: [1800, 1750, 1950, 1880, 1820, 2000, 1920, 2100, 1850, 1980, 1780, 1720] |
| | | }, |
| | | year: { |
| | | xAxisData: ['2019', '2020', '2021', '2022', '2023', '2024'], |
| | | scope1Data: [14500, 14200, 13800, 13500, 13100, 12800], |
| | | scope2Data: [26800, 26200, 25600, 25000, 24400, 23800], |
| | | scope3Data: [22400, 21800, 21200, 20600, 20000, 19400] |
| | | } |
| | | } |
| | | |
| | | const config = trendDataConfigs[trendPeriod.value] || trendDataConfigs.week |
| | | |
| | | // æ´æ°Xè½´æ°æ® |
| | | trendXAxis[0].data = config.xAxisData |
| | | |
| | | // æ´æ°ç³»åæ°æ® |
| | | trendSeries.value = [ |
| | | { |
| | | name: 'èå´1', |
| | | type: 'line', |
| | | data: config.scope1Data, |
| | | itemStyle: { color: '#FF6B6B' }, |
| | | smooth: true |
| | | }, |
| | | { |
| | | name: 'èå´2', |
| | | type: 'line', |
| | | data: config.scope2Data, |
| | | itemStyle: { color: '#4ECDC4' }, |
| | | smooth: true |
| | | }, |
| | | { |
| | | name: 'èå´3', |
| | | type: 'line', |
| | | data: config.scope3Data, |
| | | itemStyle: { color: '#45B7D1' }, |
| | | smooth: true |
| | | } |
| | | ] |
| | | } |
| | | |
| | | // è·åç¶æç±»å |
| | | function getStatusType(status) { |
| | | switch (status) { |
| | | case 'æ£å¸¸': return 'success' |
| | | case 'åè¦': return 'warning' |
| | | case 'å¼å¸¸': return 'danger' |
| | | default: return 'info' |
| | | } |
| | | } |
| | | |
| | | // å¯¼åºæ°æ® |
| | | function exportData() { |
| | | // åå¤å¯¼åºæ°æ® |
| | | const exportDataSet = { |
| | | åºæ¬ä¿¡æ¯: { |
| | | å¯¼åºæ¶é´: new Date().toLocaleString('zh-CN'), |
| | | æ°æ®å±çº§: heatmapLevel.value === 'device' ? '设å¤çº§' : heatmapLevel.value === 'line' ? '产线级' : 'ä¼ä¸çº§', |
| | | éæ©èå´: selectedScope.value === 'all' ? 'å
¨é¨èå´' : `èå´${selectedScope.value.slice(-1)}`, |
| | | éæ©æ¥æ: selectedDate.value ? selectedDate.value.toLocaleDateString('zh-CN') : '仿¥' |
| | | }, |
| | | ç¢³ææ¾ç»è®¡: { |
| | | èå´1ç´æ¥ææ¾: carbonData.value.scope1 + ' tCOâe', |
| | | èå´2é´æ¥ææ¾: carbonData.value.scope2 + ' tCOâe', |
| | | èå´3ä¾åºé¾ææ¾: carbonData.value.scope3 + ' tCOâe', |
| | | æ»ææ¾é: totalEmissions.value + ' tCOâe' |
| | | }, |
| | | è¯¦ç»æ°æ®: carbonTableData.value, |
| | | çå徿°æ®: heatmapSeries.value[0].data.map(item => ({ |
| | | æ¶é´: `${item[0]}:00`, |
| | | 设å¤åºå·: item[1], |
| | | 设å¤åç§°: heatmapYAxis.data[item[1]], |
| | | ç¢³ææ¾é: item[2] + ' tCOâe' |
| | | })) |
| | | } |
| | | |
| | | // å建CSVå
容 |
| | | let csvContent = '\uFEFF' // BOM for UTF-8 |
| | | |
| | | // åºæ¬ä¿¡æ¯ |
| | | csvContent += 'åºæ¬ä¿¡æ¯\n' |
| | | Object.entries(exportDataSet.åºæ¬ä¿¡æ¯).forEach(([key, value]) => { |
| | | csvContent += `${key},${value}\n` |
| | | }) |
| | | csvContent += '\n' |
| | | |
| | | // ç¢³ææ¾ç»è®¡ |
| | | csvContent += 'ç¢³ææ¾ç»è®¡\n' |
| | | Object.entries(exportDataSet.ç¢³ææ¾ç»è®¡).forEach(([key, value]) => { |
| | | csvContent += `${key},${value}\n` |
| | | }) |
| | | csvContent += '\n' |
| | | |
| | | // è¯¦ç»æ°æ®è¡¨æ ¼ |
| | | csvContent += 'è¯¦ç»æ°æ®\n' |
| | | csvContent += 'åç§°,ç±»å,èå´1ææ¾,èå´2ææ¾,èå´3ææ¾,æ»ææ¾é,碳æç,ç¶æ\n' |
| | | exportDataSet.è¯¦ç»æ°æ®.forEach(row => { |
| | | csvContent += `${row.name},${row.type},${row.scope1},${row.scope2},${row.scope3},${row.total},${row.efficiency},${row.status}\n` |
| | | }) |
| | | csvContent += '\n' |
| | | |
| | | // çå徿°æ®ï¼å50æ¡ï¼ |
| | | csvContent += 'çå徿°æ®ï¼å50æ¡ï¼\n' |
| | | csvContent += 'æ¶é´,设å¤åç§°,ç¢³ææ¾é\n' |
| | | exportDataSet.çå徿°æ®.slice(0, 50).forEach(row => { |
| | | csvContent += `${row.æ¶é´},${row.设å¤åç§°},${row.ç¢³ææ¾é}\n` |
| | | }) |
| | | |
| | | // å建ä¸è½½é¾æ¥ |
| | | const blob = new Blob([csvContent], { type: 'text/csv;charset=utf-8;' }) |
| | | const link = document.createElement('a') |
| | | const url = URL.createObjectURL(blob) |
| | | link.setAttribute('href', url) |
| | | link.setAttribute('download', `ç¢³ææ¾æ°æ®_${new Date().toISOString().slice(0, 10)}.csv`) |
| | | link.style.visibility = 'hidden' |
| | | document.body.appendChild(link) |
| | | link.click() |
| | | document.body.removeChild(link) |
| | | |
| | | // æ¾ç¤ºæåæ¶æ¯ |
| | | console.log('ç¢³ææ¾æ°æ®å¯¼åºæå') |
| | | } |
| | | |
| | | // æç´¢è¿æ»¤åè½ |
| | | const filteredTableData = computed(() => { |
| | | if (!searchKeyword.value) { |
| | | return carbonTableData.value |
| | | } |
| | | return carbonTableData.value.filter(item => |
| | | item.name.toLowerCase().includes(searchKeyword.value.toLowerCase()) || |
| | | item.type.toLowerCase().includes(searchKeyword.value.toLowerCase()) |
| | | ) |
| | | }) |
| | | |
| | | // çåå¾ç¹å»äºä»¶å¤ç |
| | | function handleHeatmapClick(params) { |
| | | if (params.componentType === 'series') { |
| | | const [hour, deviceIndex, value] = params.data |
| | | const deviceName = heatmapYAxis.data[deviceIndex] |
| | | console.log(`ç¹å»äºè®¾å¤: ${deviceName}, æ¶é´: ${hour}:00, ææ¾é: ${value} tCOâe`) |
| | | |
| | | // å¯ä»¥å¨è¿éæ·»å 详ç»ä¿¡æ¯å¼¹çªæè·³è½¬å°è¯¦ç»é¡µé¢ |
| | | } |
| | | } |
| | | |
| | | onMounted(() => { |
| | | // 页é¢å è½½å®æåçåå§åæä½ |
| | | console.log('碳管ç页é¢å·²å è½½') |
| | | |
| | | // åå§åçå徿°æ® |
| | | updateHeatmapLevel() |
| | | |
| | | // åå§åè¶å¿æ°æ® |
| | | updateTrendData() |
| | | |
| | | // åå§åèå´æ°æ® |
| | | updateScopeData() |
| | | |
| | | // è®¾ç½®å®æ¶å¨ï¼æ¯30ç§æ´æ°ä¸æ¬¡å®æ¶æ°æ® |
| | | const timer = setInterval(() => { |
| | | realtimeSeries.value[0].data = generateRealtimeData() |
| | | }, 30000) |
| | | |
| | | // æ¸
ç宿¶å¨ |
| | | onBeforeUnmount(() => { |
| | | clearInterval(timer) |
| | | }) |
| | | }) |
| | | |
| | | // æ·»å çåå¾ç¹å»äºä»¶ç»å® |
| | | function bindHeatmapEvents() { |
| | | // è¿ä¸ªå½æ°å¯ä»¥ç¨æ¥ç»å®çåå¾çç¹å»äºä»¶ |
| | | // å¨å®é
使ç¨ä¸ï¼å¯ä»¥éè¿EChartsçäºä»¶ç³»ç»æ¥å®ç° |
| | | } |
| | | </script> |
| | | |
| | | <style scoped> |
| | | .carbon-management { |
| | | min-height: 100vh; |
| | | background: |
| | | radial-gradient(ellipse at top, rgba(29, 78, 216, 0.15), transparent 50%), |
| | | radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.15), transparent 50%), |
| | | linear-gradient(135deg, #0a0f1c 0%, #1e293b 25%, #0f172a 50%, #1e293b 75%, #0a0f1c 100%); |
| | | padding: 20px; |
| | | font-family: 'Inter', 'Microsoft YaHei', sans-serif; |
| | | overflow: hidden; |
| | | position: relative; |
| | | } |
| | | |
| | | .carbon-management::before { |
| | | content: ''; |
| | | position: absolute; |
| | | top: 0; |
| | | left: 0; |
| | | right: 0; |
| | | bottom: 0; |
| | | background: |
| | | radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%), |
| | | radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%), |
| | | radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%); |
| | | pointer-events: none; |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | .page-header { |
| | | background: |
| | | linear-gradient(135deg, rgba(15, 27, 46, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%), |
| | | radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 50%); |
| | | border: 1px solid rgba(148, 163, 184, 0.2); |
| | | border-radius: 20px; |
| | | padding: 40px; |
| | | margin-bottom: 30px; |
| | | box-shadow: |
| | | 0 25px 50px -12px rgba(0, 0, 0, 0.4), |
| | | 0 0 0 1px rgba(255, 255, 255, 0.05), |
| | | inset 0 1px 0 rgba(255, 255, 255, 0.1); |
| | | display: flex; |
| | | justify-content: space-between; |
| | | align-items: center; |
| | | position: relative; |
| | | overflow: hidden; |
| | | backdrop-filter: blur(20px); |
| | | |
| | | } |
| | | |
| | | .page-header:hover { |
| | | transform: translateY(-2px); |
| | | box-shadow: |
| | | 0 32px 64px -12px rgba(0, 0, 0, 0.5), |
| | | 0 0 0 1px rgba(255, 255, 255, 0.1), |
| | | inset 0 1px 0 rgba(255, 255, 255, 0.15); |
| | | } |
| | | |
| | | .page-header::before { |
| | | content: ''; |
| | | position: absolute; |
| | | top: 0; |
| | | left: 0; |
| | | right: 0; |
| | | bottom: 0; |
| | | background: |
| | | linear-gradient(45deg, rgba(59, 130, 246, 0.08) 0%, rgba(147, 51, 234, 0.08) 50%, rgba(236, 72, 153, 0.08) 100%); |
| | | pointer-events: none; |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | .header-content { |
| | | flex: 1; |
| | | position: relative; |
| | | z-index: 1; |
| | | } |
| | | |
| | | .page-title { |
| | | font-size: 28px; |
| | | font-weight: bold; |
| | | color: #ffffff; |
| | | margin: 0 0 8px 0; |
| | | text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); |
| | | } |
| | | |
| | | .page-subtitle { |
| | | font-size: 14px; |
| | | color: #B8C8E0; |
| | | margin: 0; |
| | | } |
| | | |
| | | .header-stats { |
| | | display: flex; |
| | | gap: 40px; |
| | | position: relative; |
| | | z-index: 1; |
| | | } |
| | | |
| | | .stat-item { |
| | | text-align: center; |
| | | padding: 20px; |
| | | background: |
| | | linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%), |
| | | radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%); |
| | | border-radius: 12px; |
| | | border: 1px solid rgba(148, 163, 184, 0.2); |
| | | position: relative; |
| | | overflow: hidden; |
| | | |
| | | backdrop-filter: blur(10px); |
| | | } |
| | | |
| | | .stat-item:hover { |
| | | transform: translateY(-2px) scale(1.05); |
| | | box-shadow: |
| | | 0 20px 25px -5px rgba(59, 130, 246, 0.3), |
| | | 0 10px 10px -5px rgba(59, 130, 246, 0.2); |
| | | } |
| | | |
| | | .stat-item::before { |
| | | content: ''; |
| | | position: absolute; |
| | | top: 0; |
| | | left: -100%; |
| | | width: 100%; |
| | | height: 100%; |
| | | background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); |
| | | |
| | | } |
| | | |
| | | .stat-item:hover::before { |
| | | left: 100%; |
| | | } |
| | | |
| | | .stat-label { |
| | | display: block; |
| | | font-size: 12px; |
| | | color: #94A3B8; |
| | | margin-bottom: 8px; |
| | | font-weight: 500; |
| | | letter-spacing: 0.5px; |
| | | text-transform: uppercase; |
| | | } |
| | | |
| | | .stat-value { |
| | | display: block; |
| | | font-size: 28px; |
| | | font-weight: 700; |
| | | color: #00D4FF; |
| | | text-shadow: |
| | | 0 0 20px rgba(0, 212, 255, 0.6), |
| | | 0 0 40px rgba(0, 212, 255, 0.3); |
| | | position: relative; |
| | | z-index: 1; |
| | | } |
| | | |
| | | .stat-value.reduction { |
| | | color: #00E676; |
| | | text-shadow: |
| | | 0 0 20px rgba(0, 230, 118, 0.6), |
| | | 0 0 40px rgba(0, 230, 118, 0.3); |
| | | } |
| | | |
| | | .dashboard-content { |
| | | display: flex; |
| | | flex-direction: column; |
| | | gap: 20px; |
| | | min-height: calc(100vh - 200px); |
| | | } |
| | | |
| | | .top-panels { |
| | | display: grid; |
| | | grid-template-columns: 1fr 1fr 1fr 1fr; |
| | | gap: 20px; |
| | | height: 120px; |
| | | } |
| | | |
| | | .data-panel { |
| | | background: |
| | | linear-gradient(135deg, rgba(15, 27, 46, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%), |
| | | radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.08), transparent 50%); |
| | | border: 1px solid rgba(148, 163, 184, 0.15); |
| | | border-radius: 16px; |
| | | padding: 20px; |
| | | box-shadow: |
| | | 0 20px 25px -5px rgba(0, 0, 0, 0.3), |
| | | 0 10px 10px -5px rgba(0, 0, 0, 0.2), |
| | | 0 0 0 1px rgba(255, 255, 255, 0.05); |
| | | backdrop-filter: blur(16px); |
| | | display: flex; |
| | | flex-direction: column; |
| | | justify-content: center; |
| | | align-items: center; |
| | | text-align: center; |
| | | } |
| | | |
| | | .panel-title { |
| | | font-size: 12px; |
| | | color: #94A3B8; |
| | | margin-bottom: 8px; |
| | | font-weight: 500; |
| | | letter-spacing: 0.5px; |
| | | text-transform: uppercase; |
| | | } |
| | | |
| | | .panel-value { |
| | | font-size: 24px; |
| | | font-weight: 700; |
| | | color: #00D4FF; |
| | | text-shadow: |
| | | 0 0 20px rgba(0, 212, 255, 0.6), |
| | | 0 0 40px rgba(0, 212, 255, 0.3); |
| | | margin-bottom: 4px; |
| | | } |
| | | |
| | | .panel-subtitle { |
| | | font-size: 11px; |
| | | color: #B8C8E0; |
| | | font-weight: 400; |
| | | } |
| | | |
| | | .unit { |
| | | font-size: 16px; |
| | | color: #94A3B8; |
| | | } |
| | | |
| | | .center-main-view { |
| | | display: grid; |
| | | grid-template-columns: 200px 1fr 300px; |
| | | gap: 20px; |
| | | flex: 1; |
| | | } |
| | | |
| | | .left-control-panel { |
| | | background: |
| | | linear-gradient(135deg, rgba(15, 27, 46, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%); |
| | | border: 1px solid rgba(148, 163, 184, 0.15); |
| | | border-radius: 16px; |
| | | padding: 20px; |
| | | box-shadow: |
| | | 0 20px 25px -5px rgba(0, 0, 0, 0.3), |
| | | 0 0 0 1px rgba(255, 255, 255, 0.05); |
| | | backdrop-filter: blur(16px); |
| | | display: flex; |
| | | flex-direction: column; |
| | | gap: 20px; |
| | | } |
| | | |
| | | .control-section { |
| | | display: flex; |
| | | flex-direction: column; |
| | | gap: 10px; |
| | | } |
| | | |
| | | .section-title { |
| | | font-size: 14px; |
| | | font-weight: 600; |
| | | color: #ffffff; |
| | | margin-bottom: 8px; |
| | | } |
| | | |
| | | .vertical-radio { |
| | | display: flex; |
| | | flex-direction: column; |
| | | gap: 8px; |
| | | } |
| | | |
| | | .main-heatmap { |
| | | background: |
| | | linear-gradient(135deg, rgba(15, 27, 46, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%); |
| | | border: 1px solid rgba(148, 163, 184, 0.15); |
| | | border-radius: 16px; |
| | | padding: 20px; |
| | | box-shadow: |
| | | 0 20px 25px -5px rgba(0, 0, 0, 0.3), |
| | | 0 0 0 1px rgba(255, 255, 255, 0.05); |
| | | backdrop-filter: blur(16px); |
| | | display: flex; |
| | | flex-direction: column; |
| | | } |
| | | |
| | | .heatmap-header { |
| | | display: flex; |
| | | justify-content: space-between; |
| | | align-items: center; |
| | | margin-bottom: 20px; |
| | | padding-bottom: 15px; |
| | | border-bottom: 1px solid rgba(148, 163, 184, 0.2); |
| | | } |
| | | |
| | | .main-title { |
| | | font-size: 18px; |
| | | font-weight: bold; |
| | | color: #ffffff; |
| | | margin: 0; |
| | | } |
| | | |
| | | .date-selector { |
| | | display: flex; |
| | | align-items: center; |
| | | } |
| | | |
| | | .heatmap-view { |
| | | flex: 1; |
| | | } |
| | | |
| | | .right-data-panel { |
| | | background: |
| | | linear-gradient(135deg, rgba(15, 27, 46, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%); |
| | | border: 1px solid rgba(148, 163, 184, 0.15); |
| | | border-radius: 16px; |
| | | padding: 20px; |
| | | box-shadow: |
| | | 0 20px 25px -5px rgba(0, 0, 0, 0.3), |
| | | 0 0 0 1px rgba(255, 255, 255, 0.05); |
| | | backdrop-filter: blur(16px); |
| | | display: flex; |
| | | flex-direction: column; |
| | | gap: 20px; |
| | | } |
| | | |
| | | .data-section { |
| | | display: flex; |
| | | flex-direction: column; |
| | | gap: 10px; |
| | | } |
| | | |
| | | .mini-chart { |
| | | width: 100%; |
| | | } |
| | | |
| | | .trend-controls { |
| | | margin-bottom: 10px; |
| | | } |
| | | |
| | | .bottom-progress-panel { |
| | | display: grid; |
| | | grid-template-columns: 1fr 1fr; |
| | | gap: 40px; |
| | | height: 100px; |
| | | } |
| | | |
| | | .progress-section { |
| | | background: |
| | | linear-gradient(135deg, rgba(15, 27, 46, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%); |
| | | border: 1px solid rgba(148, 163, 184, 0.15); |
| | | border-radius: 16px; |
| | | padding: 20px; |
| | | box-shadow: |
| | | 0 20px 25px -5px rgba(0, 0, 0, 0.3), |
| | | 0 0 0 1px rgba(255, 255, 255, 0.05); |
| | | backdrop-filter: blur(16px); |
| | | display: flex; |
| | | flex-direction: column; |
| | | justify-content: center; |
| | | } |
| | | |
| | | .progress-title { |
| | | font-size: 14px; |
| | | font-weight: 600; |
| | | color: #ffffff; |
| | | margin-bottom: 8px; |
| | | } |
| | | |
| | | .progress-data { |
| | | display: flex; |
| | | align-items: baseline; |
| | | gap: 4px; |
| | | margin-bottom: 12px; |
| | | } |
| | | |
| | | .progress-data .current { |
| | | font-size: 20px; |
| | | font-weight: 700; |
| | | color: #00D4FF; |
| | | } |
| | | |
| | | .progress-data .separator { |
| | | font-size: 16px; |
| | | color: #94A3B8; |
| | | } |
| | | |
| | | .progress-data .target { |
| | | font-size: 14px; |
| | | color: #B8C8E0; |
| | | } |
| | | |
| | | .bottom-data-table { |
| | | margin-top: 20px; |
| | | } |
| | | |
| | | .table-panel { |
| | | background: |
| | | linear-gradient(135deg, rgba(15, 27, 46, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%), |
| | | radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.08), transparent 50%); |
| | | border: 1px solid rgba(148, 163, 184, 0.15); |
| | | border-radius: 16px; |
| | | padding: 20px; |
| | | box-shadow: |
| | | 0 20px 25px -5px rgba(0, 0, 0, 0.3), |
| | | 0 10px 10px -5px rgba(0, 0, 0, 0.2), |
| | | 0 0 0 1px rgba(255, 255, 255, 0.05), |
| | | inset 0 1px 0 rgba(255, 255, 255, 0.1); |
| | | backdrop-filter: blur(16px); |
| | | } |
| | | |
| | | .table-header { |
| | | display: flex; |
| | | justify-content: space-between; |
| | | align-items: center; |
| | | margin-bottom: 15px; |
| | | padding-bottom: 10px; |
| | | border-bottom: 1px solid rgba(148, 163, 184, 0.2); |
| | | } |
| | | |
| | | .table-title { |
| | | font-size: 16px; |
| | | font-weight: 600; |
| | | color: #ffffff; |
| | | margin: 0; |
| | | } |
| | | |
| | | .table-controls { |
| | | display: flex; |
| | | align-items: center; |
| | | gap: 10px; |
| | | } |
| | | |
| | | .panel-card { |
| | | background: |
| | | linear-gradient(135deg, rgba(15, 27, 46, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%), |
| | | radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.08), transparent 50%); |
| | | border: 1px solid rgba(148, 163, 184, 0.15); |
| | | border-radius: 16px; |
| | | padding: 24px; |
| | | box-shadow: |
| | | 0 20px 25px -5px rgba(0, 0, 0, 0.3), |
| | | 0 10px 10px -5px rgba(0, 0, 0, 0.2), |
| | | 0 0 0 1px rgba(255, 255, 255, 0.05), |
| | | inset 0 1px 0 rgba(255, 255, 255, 0.1); |
| | | position: relative; |
| | | overflow: hidden; |
| | | backdrop-filter: blur(16px); |
| | | transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
| | | } |
| | | |
| | | |
| | | |
| | | .heatmap-card { |
| | | height: 500px; |
| | | } |
| | | |
| | | .card-header { |
| | | display: flex; |
| | | justify-content: space-between; |
| | | align-items: center; |
| | | margin-bottom: 20px; |
| | | padding-bottom: 15px; |
| | | border-bottom: 1px solid rgba(81, 129, 219, 0.3); |
| | | position: relative; |
| | | z-index: 1; |
| | | } |
| | | |
| | | .card-title { |
| | | font-size: 18px; |
| | | font-weight: bold; |
| | | color: #ffffff; |
| | | margin: 0; |
| | | text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); |
| | | } |
| | | |
| | | .heatmap-controls { |
| | | display: flex; |
| | | align-items: center; |
| | | } |
| | | |
| | | .scope-stats { |
| | | display: flex; |
| | | flex-direction: column; |
| | | gap: 15px; |
| | | position: relative; |
| | | z-index: 1; |
| | | } |
| | | |
| | | .scope-item { |
| | | display: flex; |
| | | align-items: center; |
| | | padding: 20px; |
| | | border-radius: 12px; |
| | | background: |
| | | linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(147, 51, 234, 0.12) 100%), |
| | | radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 60%); |
| | | border-left: 4px solid #00D4FF; |
| | | border: 1px solid rgba(148, 163, 184, 0.15); |
| | | position: relative; |
| | | overflow: hidden; |
| | | transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
| | | backdrop-filter: blur(8px); |
| | | } |
| | | |
| | | .scope-item:hover { |
| | | transform: translateY(-3px); |
| | | box-shadow: |
| | | 0 15px 30px -5px rgba(59, 130, 246, 0.25), |
| | | 0 0 0 1px rgba(255, 255, 255, 0.1); |
| | | } |
| | | |
| | | .scope-item::after { |
| | | content: ''; |
| | | position: absolute; |
| | | top: 0; |
| | | left: 0; |
| | | right: 0; |
| | | height: 2px; |
| | | background: linear-gradient(90deg, #3B82F6, #8B5CF6, #EC4899); |
| | | opacity: 0; |
| | | transition: opacity 0.3s ease; |
| | | } |
| | | |
| | | .scope-item:hover::after { |
| | | opacity: 1; |
| | | } |
| | | |
| | | /* ç¢³ææ¾ç»è®¡æ ·å¼ */ |
| | | .carbon-stats { |
| | | display: flex; |
| | | justify-content: space-between; |
| | | margin-bottom: 20px; |
| | | gap: 15px; |
| | | } |
| | | |
| | | .carbon-stat-item { |
| | | display: flex; |
| | | flex-direction: column; |
| | | align-items: center; |
| | | gap: 12px; |
| | | padding: 20px; |
| | | background: |
| | | linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(147, 51, 234, 0.12) 100%), |
| | | radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 60%); |
| | | border-radius: 12px; |
| | | border: 1px solid rgba(148, 163, 184, 0.15); |
| | | flex: 1; |
| | | position: relative; |
| | | overflow: hidden; |
| | | transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
| | | backdrop-filter: blur(8px); |
| | | } |
| | | |
| | | .carbon-stat-item:hover { |
| | | transform: translateY(-3px); |
| | | box-shadow: |
| | | 0 15px 30px -5px rgba(59, 130, 246, 0.25), |
| | | 0 0 0 1px rgba(255, 255, 255, 0.1); |
| | | } |
| | | |
| | | .carbon-stat-item::after { |
| | | content: ''; |
| | | position: absolute; |
| | | top: 0; |
| | | left: 0; |
| | | right: 0; |
| | | height: 2px; |
| | | background: linear-gradient(90deg, #3B82F6, #8B5CF6, #EC4899); |
| | | opacity: 0; |
| | | transition: opacity 0.3s ease; |
| | | } |
| | | |
| | | .carbon-stat-item:hover::after { |
| | | opacity: 1; |
| | | } |
| | | |
| | | .carbon-label { |
| | | color: #94A3B8; |
| | | font-size: 11px; |
| | | text-align: center; |
| | | font-weight: 500; |
| | | letter-spacing: 0.5px; |
| | | text-transform: uppercase; |
| | | } |
| | | |
| | | .carbon-value { |
| | | color: #00D4FF; |
| | | font-size: 18px; |
| | | font-weight: 700; |
| | | text-shadow: |
| | | 0 0 15px rgba(0, 212, 255, 0.6), |
| | | 0 0 30px rgba(0, 212, 255, 0.3); |
| | | position: relative; |
| | | } |
| | | |
| | | .scope-item.scope1 { |
| | | border-left-color: #FF6B6B; |
| | | } |
| | | |
| | | .scope-item.scope2 { |
| | | border-left-color: #FFD93D; |
| | | } |
| | | |
| | | .scope-item.scope3 { |
| | | border-left-color: #6BCF7F; |
| | | } |
| | | |
| | | .scope-icon { |
| | | font-size: 24px; |
| | | margin-right: 15px; |
| | | } |
| | | |
| | | .scope-info { |
| | | flex: 1; |
| | | } |
| | | |
| | | .scope-name { |
| | | display: block; |
| | | font-weight: bold; |
| | | color: #ffffff; |
| | | margin-bottom: 5px; |
| | | } |
| | | |
| | | .scope-value { |
| | | display: block; |
| | | font-size: 20px; |
| | | font-weight: bold; |
| | | color: #00D4FF; |
| | | margin-bottom: 3px; |
| | | text-shadow: 0 0 8px rgba(0, 212, 255, 0.5); |
| | | } |
| | | |
| | | .scope-desc { |
| | | display: block; |
| | | font-size: 12px; |
| | | color: #B8C8E0; |
| | | } |
| | | |
| | | .target-progress { |
| | | display: flex; |
| | | flex-direction: column; |
| | | gap: 20px; |
| | | position: relative; |
| | | z-index: 1; |
| | | } |
| | | |
| | | .progress-item { |
| | | padding: 15px; |
| | | background: rgba(81, 129, 219, 0.1); |
| | | border-radius: 8px; |
| | | border: 1px solid rgba(81, 129, 219, 0.2); |
| | | } |
| | | |
| | | .progress-info { |
| | | display: flex; |
| | | justify-content: space-between; |
| | | margin-bottom: 10px; |
| | | } |
| | | |
| | | .progress-label { |
| | | font-weight: bold; |
| | | color: #ffffff; |
| | | } |
| | | |
| | | .progress-value { |
| | | color: #B8C8E0; |
| | | font-size: 14px; |
| | | } |
| | | |
| | | .bottom-panel { |
| | | margin-top: 20px; |
| | | } |
| | | |
| | | .table-controls { |
| | | display: flex; |
| | | align-items: center; |
| | | } |
| | | |
| | | /* Element Plus ç»ä»¶æ·±è²ä¸»é¢æ ·å¼ */ |
| | | :deep(.el-table) { |
| | | background: transparent !important; |
| | | color: #ffffff !important; |
| | | } |
| | | |
| | | :deep(.el-table th) { |
| | | background: rgba(81, 129, 219, 0.2) !important; |
| | | color: #ffffff !important; |
| | | border-bottom: 1px solid rgba(81, 129, 219, 0.3) !important; |
| | | } |
| | | |
| | | :deep(.el-table td) { |
| | | background: transparent !important; |
| | | color: #B8C8E0 !important; |
| | | border-bottom: 1px solid rgba(81, 129, 219, 0.1) !important; |
| | | } |
| | | |
| | | :deep(.el-table tr:hover > td) { |
| | | background: rgba(81, 129, 219, 0.1) !important; |
| | | } |
| | | |
| | | :deep(.el-input__wrapper) { |
| | | background: rgba(15, 27, 46, 0.8) !important; |
| | | border: 1px solid rgba(81, 129, 219, 0.3) !important; |
| | | color: #ffffff !important; |
| | | } |
| | | |
| | | :deep(.el-input__inner) { |
| | | color: #ffffff !important; |
| | | } |
| | | |
| | | :deep(.el-button--primary) { |
| | | background: linear-gradient(135deg, #5181DB, #D369E0) !important; |
| | | border: none !important; |
| | | box-shadow: 0 0 10px rgba(81, 129, 219, 0.5) !important; |
| | | } |
| | | |
| | | /* åç´åéæé®ç»æ ·å¼ */ |
| | | :deep(.vertical-radio) { |
| | | display: flex !important; |
| | | flex-direction: column !important; |
| | | gap: 6px !important; |
| | | } |
| | | |
| | | :deep(.vertical-radio .el-radio-button) { |
| | | margin: 0 !important; |
| | | width: 100% !important; |
| | | } |
| | | |
| | | :deep(.vertical-radio .el-radio-button__inner) { |
| | | background: rgba(59, 130, 246, 0.1) !important; |
| | | border: 1px solid rgba(148, 163, 184, 0.2) !important; |
| | | color: #B8C8E0 !important; |
| | | border-radius: 8px !important; |
| | | padding: 10px 16px !important; |
| | | width: 100% !important; |
| | | text-align: center !important; |
| | | font-size: 12px !important; |
| | | font-weight: 500 !important; |
| | | } |
| | | |
| | | :deep(.vertical-radio .el-radio-button__inner:hover) { |
| | | background: rgba(59, 130, 246, 0.2) !important; |
| | | border-color: rgba(59, 130, 246, 0.4) !important; |
| | | color: #ffffff !important; |
| | | } |
| | | |
| | | :deep(.vertical-radio .el-radio-button.is-active .el-radio-button__inner) { |
| | | background: linear-gradient(135deg, #3B82F6, #8B5CF6) !important; |
| | | border-color: #3B82F6 !important; |
| | | color: #ffffff !important; |
| | | box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important; |
| | | } |
| | | |
| | | :deep(.vertical-radio .el-radio-button:first-child .el-radio-button__inner) { |
| | | border-left: 1px solid rgba(148, 163, 184, 0.2) !important; |
| | | } |
| | | |
| | | :deep(.el-radio-group .el-radio-button__inner) { |
| | | background: rgba(59, 130, 246, 0.1) !important; |
| | | border: 1px solid rgba(148, 163, 184, 0.2) !important; |
| | | color: #B8C8E0 !important; |
| | | border-radius: 6px !important; |
| | | padding: 6px 12px !important; |
| | | margin: 0 2px !important; |
| | | font-size: 12px !important; |
| | | } |
| | | |
| | | :deep(.el-radio-group .el-radio-button__inner:hover) { |
| | | background: rgba(59, 130, 246, 0.2) !important; |
| | | border-color: rgba(59, 130, 246, 0.4) !important; |
| | | color: #ffffff !important; |
| | | } |
| | | |
| | | :deep(.el-radio-group .el-radio-button.is-active .el-radio-button__inner) { |
| | | background: linear-gradient(135deg, #3B82F6, #8B5CF6) !important; |
| | | border-color: #3B82F6 !important; |
| | | color: #ffffff !important; |
| | | box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important; |
| | | } |
| | | |
| | | :deep(.el-date-editor .el-input__wrapper) { |
| | | background: rgba(15, 27, 46, 0.8) !important; |
| | | border: 1px solid rgba(81, 129, 219, 0.3) !important; |
| | | } |
| | | |
| | | :deep(.el-progress-bar__outer) { |
| | | background: rgba(81, 129, 219, 0.2) !important; |
| | | } |
| | | |
| | | :deep(.el-tag) { |
| | | background: rgba(81, 129, 219, 0.2) !important; |
| | | border: 1px solid rgba(81, 129, 219, 0.3) !important; |
| | | color: #ffffff !important; |
| | | } |
| | | |
| | | :deep(.el-tag.el-tag--success) { |
| | | background: rgba(0, 230, 118, 0.2) !important; |
| | | border-color: rgba(0, 230, 118, 0.3) !important; |
| | | color: #00E676 !important; |
| | | } |
| | | |
| | | :deep(.el-tag.el-tag--warning) { |
| | | background: rgba(255, 193, 7, 0.2) !important; |
| | | border-color: rgba(255, 193, 7, 0.3) !important; |
| | | color: #FFC107 !important; |
| | | } |
| | | |
| | | :deep(.el-tag.el-tag--danger) { |
| | | background: rgba(244, 67, 54, 0.2) !important; |
| | | border-color: rgba(244, 67, 54, 0.3) !important; |
| | | color: #F44336 !important; |
| | | } |
| | | |
| | | /* ååºå¼è®¾è®¡ */ |
| | | @media (max-width: 1200px) { |
| | | .main-content { |
| | | flex-direction: column; |
| | | } |
| | | |
| | | .header-stats { |
| | | gap: 20px; |
| | | } |
| | | } |
| | | |
| | | @media (max-width: 768px) { |
| | | .page-header { |
| | | flex-direction: column; |
| | | text-align: center; |
| | | gap: 20px; |
| | | } |
| | | |
| | | .header-stats { |
| | | justify-content: center; |
| | | } |
| | | |
| | | .carbon-management { |
| | | padding: 10px; |
| | | } |
| | | } |
| | | </style> |