From 0536c1120098683f49fba5d8140bc3e714ccd416 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Sun, 13 Apr 2025 08:11:14 +0800
Subject: [PATCH] feat: 初始数据为0

---
 src/views/Home/HomeLeft/InspectionRaskDetails/InspectionRaskDetails.vue |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/views/Home/HomeLeft/InspectionRaskDetails/InspectionRaskDetails.vue b/src/views/Home/HomeLeft/InspectionRaskDetails/InspectionRaskDetails.vue
index 9831c09..ebeca63 100644
--- a/src/views/Home/HomeLeft/InspectionRaskDetails/InspectionRaskDetails.vue
+++ b/src/views/Home/HomeLeft/InspectionRaskDetails/InspectionRaskDetails.vue
@@ -37,11 +37,11 @@
 const currenDate = dayjs().format('YYYY-MM-DD')
 const newTime = ref([currenDate, currenDate])
 const list = ref([
-	{ name: '计划执行', value: 89, color: '#FFFFFF', field: 'planned_executions' },
-	{ name: '执行中', value: 100, color: '#FFA768', field: 'running_num' },
-	{ name: '待执行', value: 66, color: '#FFE17E', field: 'pending_executions' },
-	{ name: '已执行', value: 10, color: '#8EFFAC', field: 'executed' },
-	{ name: '执行失败', value: 10, color: '#FF8E8E', field: 'failed_executions' },
+	{ name: '计划执行', value: 0, color: '#FFFFFF', field: 'planned_executions' },
+	{ name: '执行中', value: 0, color: '#FFA768', field: 'running_num' },
+	{ name: '待执行', value: 0, color: '#FFE17E', field: 'pending_executions' },
+	{ name: '已执行', value: 0, color: '#8EFFAC', field: 'executed' },
+	{ name: '执行失败', value: 0, color: '#FF8E8E', field: 'failed_executions' },
 ])
 const option = {
 	grid: {

--
Gitblit v1.9.3