From c675456c6e09de1c0a62852244a59116396ba47c Mon Sep 17 00:00:00 2001 From: liruiqiang <3151805288@qq.com> Date: Mon, 24 Nov 2025 11:39:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=B1=E5=BA=A6=E6=8E=A2=E7=B4=A2=E7=9A=84ap?= =?UTF-8?q?i=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- .env.test | 2 +- src/api/userPermissions.js | 27 +++++++++++++++++++++++++++ 3 files changed, 29 insertions(+), 2 deletions(-) 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