diff --git a/.env.development b/.env.development index 83a16ca..873f221 100644 --- a/.env.development +++ b/.env.development @@ -1,2 +1,2 @@ -VITE_API_BASE_URL = "http://m6cbfb9d.natappfree.cc" +VITE_API_BASE_URL = "http://u92a9b3d.natappfree.cc" VITE_API_BASE_URL_LINK = "http://121.89.234.155:8807" \ No newline at end of file diff --git a/.env.test b/.env.test index 76fa27f..8d68c14 100644 --- a/.env.test +++ b/.env.test @@ -1,2 +1,2 @@ -VITE_API_BASE_URL = "http://m6cbfb9d.natappfree.cc" +VITE_API_BASE_URL = "http://u92a9b3d.natappfree.cc" VITE_API_BASE_URL_LINK = "http://121.89.234.155:8807" diff --git a/src/api/userPermissions.js b/src/api/userPermissions.js index def93bb..f422b3d 100644 --- a/src/api/userPermissions.js +++ b/src/api/userPermissions.js @@ -90,4 +90,31 @@ export function exitDMApi(params) { method: "post", data: params, }); +} + +// 深度探索--获取用户列表 +export function userDEListApi(params) { + return request({ + url: base_url + "/admin/deepExploration/list", + method: "post", + data: params, + }); +} + +// 深度探索--创建导出 +export function exportDeepExploreApi(params) { + return request({ + url: base_url + "/admin/deepExploration/export/create", + method: "post", + data: params, + }); +} + +// 深度探索-开通/编辑 +export function exitDEApi(params) { + return request({ + url: base_url + "/admin/deepExploration/permission/exit", + method: "post", + data: params, + }); } \ No newline at end of file