From bdbef0fbde20317d19bfc6d3473dabb10fb3fb3b Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Sat, 19 Apr 2025 15:41:21 +0800
Subject: [PATCH] feat: 修改任务事件概况的饼状图颜色

---
 src/api/work/process.js |   46 +++++++++++++++++++++++-----------------------
 1 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/src/api/work/process.js b/src/api/work/process.js
index 4654a64..d54be02 100644
--- a/src/api/work/process.js
+++ b/src/api/work/process.js
@@ -1,33 +1,33 @@
-import request from '@/axios';
+import request from '@/axios'
 
 // =====================参数===========================
 
 export const historyFlowList = processInstanceId => {
-  return request({
-    url: '/blade-flow/process/history-flow-list',
-    method: 'get',
-    params: {
-      processInstanceId,
-    },
-  });
-};
+	return request({
+		url: '/blade-flow/process/history-flow-list',
+		method: 'get',
+		params: {
+			processInstanceId,
+		},
+	})
+}
 
 // =====================请假流程===========================
 
 export const leaveProcess = data => {
-  return request({
-    url: '/blade-desk/process/leave/start-process',
-    method: 'post',
-    data,
-  });
-};
+	return request({
+		url: '/blade-desk/process/leave/start-process',
+		method: 'post',
+		data,
+	})
+}
 
 export const leaveDetail = businessId => {
-  return request({
-    url: '/blade-desk/process/leave/detail',
-    method: 'get',
-    params: {
-      businessId,
-    },
-  });
-};
+	return request({
+		url: '/blade-desk/process/leave/detail',
+		method: 'get',
+		params: {
+			businessId,
+		},
+	})
+}

--
Gitblit v1.9.3