From 3520f4b5ea6fefd3b84b7d0e76ef92efe4a56ea8 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Mon, 15 Jan 2024 10:28:43 +0800
Subject: [PATCH] 派遣服务页面调整

---
 src/api/check/postFiling.js |   23 ++++++++++++++++++++++-
 1 files changed, 22 insertions(+), 1 deletions(-)

diff --git a/src/api/check/postFiling.js b/src/api/check/postFiling.js
index 0993e6b..03c8130 100644
--- a/src/api/check/postFiling.js
+++ b/src/api/check/postFiling.js
@@ -12,6 +12,17 @@
     })
 }
 
+export const getAll = (params) => {
+  return request({
+    url: '/api/postFiling/getAll',
+    method: 'get',
+    params: {
+      ...params,
+    }
+  })
+}
+
+
 export const add = (row) => {
     return request({
         url: '/api/postFiling/save',
@@ -36,4 +47,14 @@
             ids,
         }
     })
-}
\ No newline at end of file
+}
+
+export const getDetail = (params) => {
+  return request({
+    url: '/api/postFiling/detail',
+    method: 'get',
+    params: {
+      ...params
+    }
+  })
+}

--
Gitblit v1.9.3