From 2d54d85fe641e3468c644f5854b1ea9b9311f514 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期二, 16 十二月 2025 18:08:28 +0800
Subject: [PATCH] 代码调整4
---
src/views/index.vue | 1195 +++++++++++++++++++++++++++++++++--------------------------
1 files changed, 674 insertions(+), 521 deletions(-)
diff --git a/src/views/index.vue b/src/views/index.vue
index 4f5b35c..dfd56e3 100644
--- a/src/views/index.vue
+++ b/src/views/index.vue
@@ -1,521 +1,674 @@
-<template>
- <div class="app-container home">
- <div style="display: flex;">
- <div>
- <div class="card-top-left">
- <div class="title">
- <span style="font-weight: bold">鏈湀閿�鍞�侀噰璐儏鍐佃鍒�</span>
- </div>
- <div class="card-group">
- <div class="info-card">
- <div class="info-message">
- <div class="info-number">{{contractAmount}}</div>
- <div class="info-title">鍚堝悓閲戦(鍏�)</div>
- </div>
- <img src="@/assets/images/icon1.png" alt="" style="width: 63px;height: 63px">
- </div>
- <div class="info-card1">
- <div class="info-message">
- <div class="info-number">{{invoiceAmount}}</div>
- <div class="info-title">寮�绁ㄩ噾棰�(鍏�)</div>
- </div>
- <img src="@/assets/images/icon2.png" alt="" style="width: 63px;height: 63px">
- </div>
- <div class="info-card2">
- <div class="info-message">
- <div class="info-number">{{receiptAmount}}</div>
- <div class="info-title">鍥炴閲戦(鍏�)</div>
- </div>
- <img src="@/assets/images/icon%203.png" alt="" style="width: 63px;height: 63px">
- </div>
- </div>
- </div>
- <div class="card-top-left">
- <div class="title">
- <span style="font-weight: bold">鏈湀搴旀敹銆佸簲浠樻儏鍐佃鍒�</span>
- </div>
- <div class="pie">
- <div class="card-group">
- <div class="pie-group">
- <div style="margin-right: 80px">
- <Echarts ref="chart"
- :legend="pieLegend"
- :chartStyle="chartStyle"
- :series="materialPieSeries"
- :tooltip="pieTooltip"></Echarts>
- </div>
- <div class="info-message2">
- <div class="info-message1">
- <div class="pie-title">鏈湀鍥炴閲戦</div>
- <div class="pie-info"><span class="pie-number">{{receiveAmount}}</span>鍏� <span class="pie-number">{{receiveAmountPercentage}}</span>%</div>
- </div>
- <div class="info-message1">
- <div class="pie-title">搴旀敹娆鹃噾棰�</div>
- <div class="pie-info"><span class="pie-number">{{contractAmountMonth}}</span>鍏�</div>
- </div>
- </div>
- </div>
- </div>
- <div class="card-group">
- <div class="pie-group">
- <div style="margin-right: 80px">
- <Echarts ref="chart"
- :options="options"
- :legend="pieLegend"
- :chartStyle="chartStyle"
- :series="materialPieSeries1"
- :tooltip="pieTooltip1"></Echarts>
- </div>
- <div class="info-message2">
- <div class="info-message1">
- <div class="pie-title1">鏈湀浠樻閲戦</div>
- <div class="pie-info"><span class="pie-number1">{{paymentAmount}}</span>鍏� <span class="pie-number1">{{payableAmountPercentage}}</span>%</div>
- </div>
- <div class="info-message1">
- <div class="pie-title1">搴斾粯娆鹃噾棰�</div>
- <div class="pie-info"><span class="pie-number1">{{payableAmount}}</span>鍏�</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div>
- <div class="card-top-right">
- <div class="title">
- <span style="font-weight: bold">瀹㈡埛鍚堝悓閲戦TOP5缁熻</span>
- </div>
- <div>
- <Echarts ref="chart"
- :chartStyle="chartStyle1"
- :grid="grid"
- :legend="barLegend"
- :series="barSeries"
- :tooltip="tooltip"
- :xAxis="xAxis1"
- :yAxis="yAxis1"
- style="height: 42vh;"></Echarts>
- </div>
- </div>
- </div>
- </div>
- <div>
- <div>
- <div class="card-bottom">
- <div class="title">
- <span style="font-weight: bold">鍥炴銆佸紑绁ㄨ繎鍗婂勾璧板娍鍥�</span>
- </div>
- <div>
- <Echarts ref="chart"
- :chartStyle="chartStyle1"
- :grid="grid"
- :legend="barLegend"
- :series="lineSeries"
- :tooltip="tooltip"
- :xAxis="xAxis2"
- :yAxis="yAxis2"
- style="height: 27vh;"></Echarts>
- </div>
- </div>
- </div>
- </div>
- </div>
-</template>
-
-<script setup name="Index">
-const { proxy } = getCurrentInstance()
-import * as echarts from 'echarts';
-import Echarts from "@/components/Echarts/echarts.vue";
-import {
- getAmountMouth,
- getContractAmount,
- getInvoiceAmount,
- getReceiptAmount,
- getTopFiveList, paymentMonthList
-} from "@/api/viewIndex.js";
-
-const pieLegend = reactive({
- show: false,
-})
-const contractAmount = ref(0)
-const invoiceAmount = ref(0)
-const receiptAmount = ref(0)
-const receiveAmount = ref(0)
-const contractAmountMonth = ref(0)
-const receiveAmountPercentage = ref(0)
-const paymentAmount = ref(0)
-const payableAmount = ref(0)
-const payableAmountPercentage = ref(0)
-const options = reactive({
- graphic: {
- type: 'circle',
- left: 'center',
- top: 'middle',
- shape: {
- r: '70%' // 鍦嗗舰鍗婂緞涓庨ゼ鍥惧鍦堢浉鍚�
- },
- }
-})
-const pieTooltip = reactive({
- trigger: 'item',
- formatter: function (params) {
- // 鍔ㄦ�佺敓鎴愭彁绀轰俊鎭紝鍩轰簬鏁版嵁椤圭殑 name 灞炴��
- const description = params.name === '鏈湀鍥炴閲戦' ? '鏈湀鍥炴閲戦' : '搴旀敹娆鹃噾棰�';
- return `${description} ${formatNumber(params.value)}鍏� ${params.percent}%`;
- },
- position: 'right'
-})
-const pieTooltip1 = reactive({
- trigger: 'item',
- formatter: function (params) {
- // 鍔ㄦ�佺敓鎴愭彁绀轰俊鎭紝鍩轰簬鏁版嵁椤圭殑 name 灞炴��
- const description = params.name === '鏈湀浠樻閲戦' ? '鏈湀浠樻閲戦' : '搴斾粯娆鹃噾棰�';
- return `${description} ${formatNumber(params.value)}鍏� ${params.percent}%`;
- },
- position: 'right'
-})
-// 鏁板瓧鏍煎紡鍖栧嚱鏁帮紝娣诲姞閫楀彿浣滀负鍗冧綅鍒嗛殧绗�
-function formatNumber(num) {
- return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
-}
-const materialPieSeries = ref([
- {
- type: 'pie',
- radius: '92%',
- avoidLabelOverlap: false,
- itemStyle: {
- borderColor: '#fff',
- borderWidth: 2
- },
- label: {
- show:false
- },
- data: [
- { value: 0, name: '鏈湀鍥炴閲戦', itemStyle: { color: '#2D99FF' } },
- { value: 0, name: '搴旀敹娆鹃噾棰�', itemStyle: { color: '#D4DDFF' } },
- ]
- }
-])
-const materialPieSeries1 = ref([
- {
- type: 'pie',
- radius: '92%',
- avoidLabelOverlap: false,
- itemStyle: {
- borderColor: '#fff',
- borderWidth: 2
- },
- label: {
- show:false
- },
- data: [
- { value: 0, name: '鏈湀浠樻閲戦', itemStyle: { color: '#1EBFAC' } },
- { value: 0, name: '搴斾粯娆鹃噾棰�', itemStyle: { color: '#D0EFE1' } },
- ]
- }
-])
-const chartStyle = {
- width: '150%',
- height: '120%' // 璁剧疆鍥捐〃瀹瑰櫒鐨勯珮搴�
-}
-const chartStyle1 = {
- width: '100%',
- height: '100%' // 璁剧疆鍥捐〃瀹瑰櫒鐨勯珮搴�
-}
-const grid = {
- show: false
-}
-const tooltip = {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- }
-}
-const yAxis1 = ref([
- {
- type: 'value',
- }
-])
-const xAxis1 = ref([
- {
- type: 'category',
- data: []
- }
-])
-const yAxis2 = ref([
- {
- type: 'value',
- }
-])
-const xAxis2 = ref([
- {
- type: 'category',
- data: []
- }
-])
-const barLegend = reactive({})
-const barSeries = ref([
- {
- type: 'bar',
- data: [],
- label: {
- show: true
- },
- },
-])
-const lineSeries = ref([
- {
- type: 'line',
- data: [],
- label: {
- show: true
- },
- },
-])
-// 鍚堝悓閲戦
-const getContractAmountNum = () => {
- getContractAmount().then((res) => {
- contractAmount.value = res.data
- })
-}
-// 寮�绁ㄩ噾棰�
-const getInvoiceAmountNum = () => {
- getInvoiceAmount().then((res) => {
- invoiceAmount.value = res.data
- })
-}
-// 鍥炴閲戦
-const getReceiptAmountNum = () => {
- getReceiptAmount().then((res) => {
- receiptAmount.value = res.data
- })
-}
-// 鏈堝洖娆鹃噾棰濋ゼ鍥�
-const getAmountMouthNum = () => {
- getAmountMouth().then((res) => {
- receiveAmount.value = res.data.receiveAmount
- contractAmountMonth.value = res.data.contractAmount
- const percentage = (receiveAmount.value / contractAmountMonth.value) * 100;
- receiveAmountPercentage.value = percentage.toFixed(2)
- materialPieSeries.value[0].data[0].value = receiveAmount.value
- materialPieSeries.value[0].data[1].value = contractAmountMonth.value
- })
-}
-// 鏈堜粯娆鹃噾棰濋ゼ鍥�
-const paymentMonthListNum = () => {
- paymentMonthList().then((res) => {
- paymentAmount.value = res.data.paymentAmount
- payableAmount.value = res.data.payableAmount
- const percentage = (paymentAmount.value / payableAmount.value) * 100;
- payableAmountPercentage.value = percentage.toFixed(2)
- materialPieSeries1.value[0].data[0].value = paymentAmount.value
- materialPieSeries1.value[0].data[1].value = payableAmount.value
- })
-}
-// 瀹㈡埛
-const getTopFiveListNum = async () => {
- const res = await getTopFiveList()
-
- const customerName = []
- const totalAmount = []
-
- res.data.forEach(item => {
- customerName.push(item.customerName)
- totalAmount.push(item.totalAmount)
- })
-
-// 鉁� 姝g‘鍝嶅簲寮忚祴鍊硷細鍒涘缓鏂扮殑 xAxis 鍜� series 瀵硅薄
- xAxis1.value = [
- {
- type: 'category',
- data: customerName
- }
- ]
-
- barSeries.value = [
- {
- type: 'bar',
- data: totalAmount,
- itemStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: '#F7D2FF' },
- { offset: 1, color: '#826AF9' }
- ])
- },
- emphasis: {
- itemStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 1, color: '#826AF9' }
- ])
- }
- },
- }
- ]
-}
-getContractAmountNum()
-getInvoiceAmountNum()
-getReceiptAmountNum()
-getTopFiveListNum()
-getAmountMouthNum()
-paymentMonthListNum()
-</script>
-
-<style scoped>
-.card-top-left {
- padding: 16px;
- background: #fff;
- height: 24vh;
- width: 56vw;
- margin-bottom: 20px;
-}
-.card-top-right {
- padding: 16px;
- background: #fff;
- height: 50.6vh;
- width: 28vw;
- margin-bottom: 20px;
- margin-left: 20px;
-}
-.card-bottom {
- padding: 16px;
- background: #fff;
- height: 34vh;
- width: 85.2vw;
- margin-bottom: 20px;
-}
-.title {
- position: relative;
- font-size: 18px;
- color: #333;
- font-weight: 400;
- padding-left: 10px;
- margin-bottom: 26px;
-}
-.title::before {
- position: absolute;
- left: 0;
- top: 4px;
- content: '';
- width: 4px;
- height: 18px;
- background-color: #3A7BFA;
- border-radius: 2px;
-}
-.card-group {
- display: flex;
-}
-.info-card {
- width: 300px;
- height: 126px;
- background-image: url("../assets/images/Rectangle 76@2x.png");
- background-size: 100% 100%;
- display: flex;
- justify-content: space-around;
- align-items: center;
-}
-.info-card1 {
- width: 300px;
- height: 126px;
- background-image: url("../assets/images/Rectangle 77@2x.png");
- background-size: 100% 100%;
- margin: 0 40px;
- display: flex;
- justify-content: space-around;
- align-items: center;
-}
-.info-card2 {
- width: 300px;
- height: 126px;
- background-image: url("../assets/images/Rectangle 77@2x(1).png");
- background-size: 100% 100%;
- display: flex;
- justify-content: space-around;
- align-items: center;
-}
-.info-message {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
-}
-.info-message1 {
- font-weight: bold;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
-}
-.info-message2 {
- font-weight: bold;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
-}
-.info-number {
- font-weight: bold;
- font-size: 32px;
- color: #FFFFFF;
- margin-bottom: 10px;
-}
-.info-title {
- font-weight: bold;
- font-size: 18px;
- color: #FFFFFF;
-}
-.pie {
- display: flex;
- flex-direction: row;
- justify-content: space-around;
-}
-.pie-group {
- display: flex;
-}
-.pie-title {
- font-size: 14px;
- line-height: 24px;
- color: #2853FD;
- padding-left: 16px;
- position: relative;
-}
-.pie-title::before {
- content: '';
- width: 6px; /* 钃濈偣鐨勫搴� */
- height: 6px; /* 钃濈偣鐨勯珮搴� */
- background-color: #2853FD; /* 钃濈偣鐨勯鑹� */
- border-radius: 50%; /* 灏嗘鏂瑰舰鍙樹负鍦嗗舰 */
- position: absolute;
- left: 0; /* 瀹氫綅鍒板乏杈� */
- top: 9px; /* 鍨傜洿灞呬腑瀵归綈锛屾牴鎹楂樿皟鏁� */
-}
-.pie-title1 {
- font-size: 14px;
- line-height: 24px;
- color: #1EBFAC;
- padding-left: 16px;
- position: relative;
-}
-.pie-title1::before {
- content: '';
- width: 6px; /* 钃濈偣鐨勫搴� */
- height: 6px; /* 钃濈偣鐨勯珮搴� */
- background-color: #1EBFAC; /* 钃濈偣鐨勯鑹� */
- border-radius: 50%; /* 灏嗘鏂瑰舰鍙樹负鍦嗗舰 */
- position: absolute;
- left: 0; /* 瀹氫綅鍒板乏杈� */
- top: 9px; /* 鍨傜洿灞呬腑瀵归綈锛屾牴鎹楂樿皟鏁� */
-}
-.pie-info {
- padding-left: 16px;
- font-size: 14px;
- line-height: 24px;
-}
-.pie-number {
- color: #2853FD;
-}
-.pie-number1 {
- color: #1EBFAC;
-}
-</style>
-
+<template>
+ <div class="dashboard">
+ <!-- 椤堕儴妯悜涓ゆ爮 -->
+ <div class="dashboard-top">
+ <!-- 宸︼細绯荤粺姒傝+鏁版嵁鍗$墖 -->
+ <div class="top-left">
+ <div class="system-info">
+ <div class="section-title">鎵垮寘鍟嗙鐞嗙郴缁�</div>
+ <div style="display: flex; align-items: center; gap: 20px">
+ <div class="system-card">
+ <div class="system-name">鎵垮寘鍟嗙鐞嗙郴缁�</div>
+ <div class="system-meta">璧勮川瀹℃牳 路 鍚堝悓绠$悊 路 缁╂晥璇勪及</div>
+ </div>
+ <div style="display: flex; align-items: center; gap: 8px">
+ <el-icon color="#5053B5" size="22"><Clock /></el-icon>
+ <span>褰撳墠鏃堕棿锛歿{ currentTime }}</span>
+ </div>
+ </div>
+ </div>
+ <div class="data-cards">
+ <div class="data-card total">
+ <div class="data-title">鎬绘壙鍖呭晢鏁�</div>
+ <div class="data-value">{{ contractorStats.total }}</div>
+ <div class="data-desc">
+ 宸插鏍� {{ contractorStats.approved }} | 寰呭鏍�
+ {{ contractorStats.pending }}
+ </div>
+ </div>
+ <div class="data-card pending">
+ <div class="data-title">寰呭鏍告壙鍖呭晢</div>
+ <div class="data-value">{{ contractorStats.pending }}</div>
+ <div class="data-desc">
+ A绾� {{ contractorStats.aPending }} | B绾�
+ {{ contractorStats.bPending }} | C绾�
+ {{ contractorStats.cPending }}
+ </div>
+ </div>
+ <div class="data-card today">
+ <div class="data-title">鏈湀鏂板</div>
+ <div class="data-value">{{ contractorStats.monthly }}</div>
+ <div class="data-desc">
+ 鍚屾瘮 {{ contractorStats.monthly鍚屾瘮 }}% | 鐜瘮
+ {{ contractorStats.monthly鐜瘮 }}%
+ </div>
+ </div>
+ </div>
+ </div>
+ <!-- 鍙筹細寰呭鐞嗘姤璀﹀垪琛� -->
+ <div class="alarm-panel">
+ <div class="section-title">寰呭鏍告壙鍖呭晢</div>
+ <ul class="alarm-list" v-if="pendingContractors.length > 0">
+ <li v-for="item in pendingContractors" :key="item.id">
+ <div
+ style="
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ width: 100%;
+ gap: 10px;
+ "
+ >
+ <div
+ style="
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ "
+ >
+ <div class="alarm-title">{{ item.name }} - {{ item.type }}</div>
+ <el-tag :type="getContractorLevelType(item.level)"
+ >{{ item.level }}绾�</el-tag
+ >
+ </div>
+ <div
+ style="
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ "
+ >
+ <div class="alarm-value">
+ 鑱旂郴浜�: {{ item.contact }} | 娉ㄥ唽鏃堕棿: {{ item.registerDate }}
+ </div>
+ <div class="alarm-time">{{ item.applyDate }}</div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div v-else style="text-align: center; color: #909399; padding: 20px">
+ 鏆傛棤寰呭鏍告壙鍖呭晢
+ </div>
+ </div>
+ </div>
+
+ <!-- 涓儴妯悜涓ゆ爮 -->
+ <div class="dashboard-row">
+ <div class="main-panel">
+ <div class="section-title">鎵垮寘鍟嗗闀胯秼鍔�</div>
+ <Echarts
+ ref="chart"
+ :chartStyle="chartStyle"
+ :grid="grid"
+ :legend="lineLegend"
+ :series="lineSeries"
+ :tooltip="tooltipLine"
+ :xAxis="xAxis"
+ :yAxis="yAxis"
+ style="height: 300px"
+ ></Echarts>
+ </div>
+ <div class="main-panel">
+ <div class="section-title">鎵垮寘鍟嗚祫璐ㄥ垎甯�</div>
+ <div
+ style="
+ display: flex;
+ align-items: center;
+ gap: 20px;
+ justify-content: space-evenly;
+ height: 300px;
+ "
+ >
+ <div style="width: 50%">
+ <Echarts
+ ref="chart"
+ :legend="pieLegend"
+ :chartStyle="chartStylePie"
+ :series="levelPieSeries"
+ :tooltip="pieTooltip"
+ ></Echarts>
+ </div>
+ <ul class="level-list" style="width: 50%">
+ <li v-for="item in levelPieSeries[0].data" :key="item.name">
+ <div
+ style="
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ width: 100%;
+ "
+ >
+ <div class="line" :style="{ color: item.itemStyle.color }">
+ 鈼弡{ item.name }}
+ </div>
+ <div style="width: 60px">{{ item.value }}瀹�</div>
+ <div style="width: 60px">{{ item.rate }}%</div>
+ </div>
+ </li>
+ </ul>
+ </div>
+ </div>
+ </div>
+
+ <!-- 搴曢儴妯悜涓ゆ爮 -->
+ <div class="dashboard-row">
+ <div class="main-panel">
+ <div class="section-title">鎵垮寘鍟嗙被鍨嬪垎甯�</div>
+ <Echarts
+ ref="chart"
+ :color="barColors"
+ :chartStyle="chartStyle"
+ :grid="grid"
+ :series="equipmentBarSeries"
+ :tooltip="tooltip"
+ :xAxis="equipmentXAxis"
+ :yAxis="yAxis"
+ style="height: 300px"
+ ></Echarts>
+ </div>
+ <div class="main-panel">
+ <div class="section-title">鎵垮寘鍟嗗鏍告椂鏁�</div>
+ <Echarts
+ ref="chart"
+ :color="barColors"
+ :chartStyle="chartStyle"
+ :grid="grid"
+ :series="handlingTimeSeries"
+ :tooltip="tooltip"
+ :xAxis="handlingTimeXAxis"
+ :yAxis="yAxis"
+ style="height: 300px"
+ ></Echarts>
+ </div>
+ </div>
+ </div>
+</template>
+
+<script setup>
+import { ref, onMounted, reactive, computed } from "vue";
+import Echarts from "@/components/Echarts/echarts.vue";
+import { Clock } from "@element-plus/icons-vue";
+
+// 褰撳墠鏃堕棿
+const currentTime = computed(() => {
+ const now = new Date();
+ return now.toLocaleString("zh-CN");
+});
+
+// 鎵垮寘鍟嗙粺璁℃暟鎹�
+const contractorStats = reactive({
+ total: 156,
+ approved: 132,
+ pending: 24,
+ aPending: 8,
+ bPending: 12,
+ cPending: 4,
+ monthly: 28,
+ monthly鍚屾瘮: "+18.5",
+ monthly鐜瘮: "+5.2",
+});
+
+// 寰呭鏍告壙鍖呭晢鍒楄〃
+const pendingContractors = ref([
+ {
+ id: 1,
+ name: "寤虹瓚宸ョ▼鏈夐檺鍏徃",
+ type: "寤虹瓚鏂藉伐",
+ contact: "寮犱笁",
+ registerDate: "2025-01-15",
+ applyDate: "2025-12-16 14:30:23",
+ level: "A",
+ },
+ {
+ id: 2,
+ name: "鏈虹數瀹夎宸ョ▼鍏徃",
+ type: "鏈虹數瀹夎",
+ contact: "鏉庡洓",
+ registerDate: "2025-03-20",
+ applyDate: "2025-12-16 14:28:15",
+ level: "B",
+ },
+ {
+ id: 3,
+ name: "瑁呴グ瑁呬慨宸ョ▼鍏徃",
+ type: "瑁呴グ瑁呬慨",
+ contact: "鐜嬩簲",
+ registerDate: "2025-05-10",
+ applyDate: "2025-12-16 14:22:18",
+ level: "B",
+ },
+ {
+ id: 4,
+ name: "缁垮寲宸ョ▼鏈夐檺鍏徃",
+ type: "鍥灄缁垮寲",
+ contact: "璧靛叚",
+ registerDate: "2025-08-05",
+ applyDate: "2025-12-16 14:18:55",
+ level: "C",
+ },
+]);
+
+// 鍥捐〃鏍峰紡
+const chartStyle = {
+ width: "100%",
+ height: "100%",
+};
+
+const chartStylePie = {
+ width: "100%",
+ height: "100%",
+};
+
+const grid = {
+ left: "3%",
+ right: "4%",
+ bottom: "3%",
+ containLabel: true,
+};
+
+// 鎵垮寘鍟嗗闀胯秼鍔� - 鎶樼嚎鍥�
+const lineLegend = {
+ show: true,
+ data: ["A绾�", "B绾�", "C绾�"],
+};
+
+const tooltipLine = {
+ trigger: "axis",
+ axisPointer: {
+ type: "cross",
+ },
+};
+
+const xAxis = ref({
+ type: "category",
+ data: ["12-01", "12-02", "12-03", "12-04", "12-05", "12-06", "12-07"],
+});
+
+const yAxis = ref({
+ type: "value",
+ name: "鎵垮寘鍟嗘暟閲�",
+});
+
+const lineSeries = ref([
+ {
+ name: "A绾�",
+ type: "line",
+ data: [15, 18, 20, 22, 25, 28, 30],
+ itemStyle: {
+ color: "#f56c6c",
+ },
+ lineStyle: {
+ width: 2,
+ },
+ showSymbol: true,
+ },
+ {
+ name: "B绾�",
+ type: "line",
+ data: [45, 52, 58, 65, 70, 75, 80],
+ itemStyle: {
+ color: "#e6a23c",
+ },
+ lineStyle: {
+ width: 2,
+ },
+ showSymbol: true,
+ },
+ {
+ name: "C绾�",
+ type: "line",
+ data: [30, 35, 40, 45, 50, 55, 60],
+ itemStyle: {
+ color: "#67c23a",
+ },
+ lineStyle: {
+ width: 2,
+ },
+ showSymbol: true,
+ },
+]);
+
+// 鎵垮寘鍟嗚祫璐ㄥ垎甯� - 楗煎浘
+const pieLegend = {
+ show: false,
+};
+
+const pieTooltip = {
+ trigger: "item",
+ formatter: "{b}: {c}瀹� ({d}%)",
+};
+
+const levelPieSeries = ref([
+ {
+ type: "pie",
+ radius: ["60%", "80%"],
+ avoidLabelOverlap: false,
+ itemStyle: {
+ borderColor: "#fff",
+ borderWidth: 2,
+ },
+ label: {
+ show: false,
+ },
+ data: [
+ {
+ name: "A绾�",
+ value: 45,
+ rate: 28.85,
+ itemStyle: { color: "#f56c6c" },
+ },
+ {
+ name: "B绾�",
+ value: 70,
+ rate: 44.87,
+ itemStyle: { color: "#e6a23c" },
+ },
+ {
+ name: "C绾�",
+ value: 41,
+ rate: 26.28,
+ itemStyle: { color: "#67c23a" },
+ },
+ ],
+ },
+]);
+
+// 鎵垮寘鍟嗙被鍨嬪垎甯� - 鏌辩姸鍥�
+const barColors = ["#409eff", "#67c23a", "#e6a23c", "#f56c6c", "#909399"];
+
+const tooltip = {
+ trigger: "axis",
+ axisPointer: {
+ type: "shadow",
+ },
+};
+
+const equipmentXAxis = ref({
+ type: "category",
+ data: ["寤虹瓚鏂藉伐", "鏈虹數瀹夎", "瑁呴グ瑁呬慨", "鍥灄缁垮寲", "鍏朵粬"],
+});
+
+const equipmentBarSeries = ref([
+ {
+ name: "鎵垮寘鍟嗘暟閲�",
+ type: "bar",
+ data: [45, 35, 25, 20, 31],
+ itemStyle: {
+ color: function (params) {
+ return barColors[params.dataIndex % barColors.length];
+ },
+ },
+ label: {
+ show: true,
+ position: "top",
+ },
+ },
+]);
+
+// 鎵垮寘鍟嗗鏍告椂鏁堝垎鏋� - 鏌辩姸鍥�
+const handlingTimeXAxis = ref({
+ type: "category",
+ data: ["0-1澶�", "1-3澶�", "3-7澶�", "7澶╀互涓�"],
+});
+
+const handlingTimeSeries = ref([
+ {
+ name: "瀹℃牳鏁伴噺",
+ type: "bar",
+ data: [85, 45, 20, 10],
+ itemStyle: {
+ color: function (params) {
+ return barColors[params.dataIndex % barColors.length];
+ },
+ },
+ label: {
+ show: true,
+ position: "top",
+ },
+ },
+]);
+
+// 鑾峰彇鎵垮寘鍟嗙骇鍒牱寮�
+const getContractorLevelType = (level) => {
+ switch (level) {
+ case "A":
+ return "danger";
+ case "B":
+ return "warning";
+ case "C":
+ return "info";
+ default:
+ return "info";
+ }
+};
+
+onMounted(() => {
+ // 椤甸潰鍔犺浇瀹屾垚鍚庣殑鍒濆鍖栨搷浣�
+});
+</script>
+
+<style scoped>
+.dashboard {
+ background: #f5f7fa;
+ min-height: 100vh;
+ padding: 20px;
+ box-sizing: border-box;
+}
+
+.dashboard-top {
+ display: flex;
+ gap: 20px;
+ margin-bottom: 20px;
+}
+
+.system-info {
+ display: flex;
+ flex-direction: column;
+ gap: 8px;
+ padding: 20px;
+ min-width: 0;
+ background-color: #eff2fb;
+ border-radius: 12px;
+ height: 138px;
+}
+
+.system-card {
+ display: flex;
+ flex-direction: column;
+ gap: 10px;
+ position: relative;
+ padding-right: 15px;
+}
+
+.system-name {
+ font-weight: 600;
+ font-size: 18px;
+ color: #161a9a;
+}
+
+.system-meta {
+ font-weight: 400;
+ font-size: 12px;
+ color: #818185;
+}
+
+.data-cards {
+ display: flex;
+ gap: 16px;
+ justify-content: flex-start;
+ background: #ffffff;
+ border-radius: 12px;
+ padding: 20px;
+}
+
+.data-card {
+ background: #fff;
+ border-radius: 12px;
+ padding: 16px;
+ min-width: 160px;
+ box-shadow: 0 2px 8px #eee;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ width: 32%;
+ height: 140px;
+ transition: all 0.3s ease;
+}
+
+.data-card:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
+}
+
+.data-card.total {
+ background: linear-gradient(135deg, #409eff 0%, #66b1ff 100%);
+ color: #fff;
+}
+
+.data-card.pending {
+ background: linear-gradient(135deg, #f56c6c 0%, #f78989 100%);
+ color: #fff;
+}
+
+.data-card.today {
+ background: linear-gradient(135deg, #67c23a 0%, #85ce61 100%);
+ color: #fff;
+}
+
+.data-title {
+ font-weight: 600;
+ font-size: 16px;
+ margin-bottom: 12px;
+}
+
+.data-value {
+ font-size: 32px;
+ font-weight: bold;
+ margin-bottom: 8px;
+}
+
+.data-desc {
+ font-size: 12px;
+ opacity: 0.9;
+}
+
+.top-left {
+ display: flex;
+ flex-direction: column;
+ gap: 20px;
+ width: 60%;
+}
+
+.alarm-panel {
+ background: #fff;
+ border-radius: 12px;
+ padding: 20px;
+ width: 40%;
+}
+
+.alarm-list {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ font-size: 14px;
+ overflow-y: auto;
+ height: 260px;
+}
+
+.alarm-list li {
+ border-radius: 8px;
+ margin-bottom: 12px;
+ padding: 12px 20px;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ background: #f8f9fa;
+ border-left: 4px solid #409eff;
+ transition: all 0.3s ease;
+}
+
+.alarm-list li:hover {
+ background: #e9ecef;
+ transform: translateX(4px);
+}
+
+.alarm-title {
+ font-weight: 600;
+ font-size: 14px;
+ color: #303133;
+}
+
+.alarm-value {
+ font-size: 12px;
+ color: #606266;
+}
+
+.alarm-time {
+ font-size: 12px;
+ color: #909399;
+}
+
+.dashboard-row {
+ display: flex;
+ gap: 20px;
+ margin-bottom: 20px;
+}
+
+.main-panel {
+ background: #fff;
+ border-radius: 12px;
+ padding: 20px;
+ flex: 1;
+ min-width: 0;
+ display: flex;
+ flex-direction: column;
+}
+
+.section-title {
+ position: relative;
+ font-size: 18px;
+ color: #333;
+ padding-left: 10px;
+ margin-bottom: 20px;
+ font-weight: 700;
+}
+
+.section-title::before {
+ position: absolute;
+ left: 0;
+ top: 4px;
+ content: "";
+ width: 4px;
+ height: 18px;
+ background-color: #409eff;
+ border-radius: 2px;
+}
+
+.level-list {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ height: 200px;
+ overflow-y: auto;
+ width: 100%;
+}
+
+.level-list li {
+ margin-bottom: 15px;
+ padding: 10px;
+ background: #f8f9fa;
+ border-radius: 6px;
+ transition: all 0.3s ease;
+}
+
+.level-list li:hover {
+ background: #e9ecef;
+}
+
+.line {
+ position: relative;
+ width: 80px;
+ font-weight: 500;
+}
+</style>
--
Gitblit v1.9.3