From e1699c4851f6ca397cd0ad1ff63f32c737654836 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Wed, 02 Apr 2025 19:14:54 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
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