From 2781142ab67deba83925da706ca26b7f8ea1a759 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期四, 04 九月 2025 15:42:24 +0800
Subject: [PATCH] 审批用户列表改为树形
---
src/api/common.js | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/src/api/common.js b/src/api/common.js
index 4851b67..bad742b 100644
--- a/src/api/common.js
+++ b/src/api/common.js
@@ -1,3 +1,9 @@
+/*
+ * @Date: 2025-05-27 23:44:41
+ * @LastEditors: gaoshp
+ * @LastEditTime: 2025-07-07 22:47:09
+ * @FilePath: /mdmweb/src/api/common.js
+ */
import request from '@/axios';
/**
@@ -13,3 +19,12 @@
responseType: 'blob',
});
};
+export const exportBlobPost = (url, params,data) => {
+ return request({
+ url: url,
+ params: params,
+ data,
+ method: 'post',
+ responseType: 'blob',
+ });
+};
--
Gitblit v1.9.3