From 3c738f4fe2762bba8087e5a22fc0dc06560eab0e Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Thu, 08 Aug 2024 10:01:17 +0800
Subject: [PATCH] 三色任务与自查任务
---
api/placeExp/placeExp.js | 29 +++++++++++++++++++++++++++--
1 files changed, 27 insertions(+), 2 deletions(-)
diff --git a/api/placeExp/placeExp.js b/api/placeExp/placeExp.js
index 3e032fc..1f95fda 100644
--- a/api/placeExp/placeExp.js
+++ b/api/placeExp/placeExp.js
@@ -7,14 +7,21 @@
params
})
}
+export const getPlacePractitionerPage = (params) => {
+ return http.request({
+ url: 'blade-placePractitioner/placePractitioner/page',
+ method: 'GET',
+ params
+ })
+}
-export const getCheckPlaceExtData = (params) => {
+export const checkPlaceExtData = (data) => {
return http.request({
url: 'blade-placeExt/placeExt/checkPlaceExt',
method: 'POST',
- params
+ data
})
}
@@ -24,4 +31,22 @@
method: 'POST',
data
})
+}
+
+
+export const getPlaceDetail = (params) => {
+ return http.request({
+ url: '/blade-placeExt/placeExt/getDetail',
+ method: 'GET',
+ params
+ })
+}
+
+//审核场所从业人员
+export const auditPlacePeople = (data) => {
+ return http.request({
+ url: '/blade-placePractitioner/placePractitioner/auditing',
+ method: 'POST',
+ data
+ })
}
\ No newline at end of file
--
Gitblit v1.9.3