From e14358f85a7d32a753225f253ff223d17cf36c25 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 02 Apr 2025 19:10:00 +0800
Subject: [PATCH] style: 风格处理
---
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