From 2ba1c199ce3199a243f7735ef992babf80737d65 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期一, 01 四月 2024 09:05:44 +0800
Subject: [PATCH] mrshi
---
company/src/api/business/unionApply.js | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/company/src/api/business/unionApply.js b/company/src/api/business/unionApply.js
new file mode 100644
index 0000000..cb10f1a
--- /dev/null
+++ b/company/src/api/business/unionApply.js
@@ -0,0 +1,23 @@
+import request from '../../utils/request'
+
+// 鏌ヨ
+export function fetchList (data) {
+ return request.post('/business/unionApply/page', data, {
+ trim: true
+ })
+}
+
+// 鍒涘缓
+export function create (data) {
+ return request.post('/business/unionApply/create', data)
+}
+
+// 淇敼
+export function updateById (data) {
+ return request.post('/business/unionApply/updateById', data)
+}
+
+// 鏍规嵁ID鏌ヨ
+export function getById (id) {
+ return request.get(`/business/unionApply/${id}`)
+}
--
Gitblit v1.9.3