From 0fc9e717509e05a81b5a1b2d119f43a87b93301c Mon Sep 17 00:00:00 2001 From: LiuJiaNan <15703339975@163.com> Date: Thu, 13 Aug 2026 15:06:06 +0800 Subject: [PATCH] =?UTF-8?q?fix(api):=20=E4=BF=AE=E5=A4=8D=20saveAdminCorp?= =?UTF-8?q?=20=E8=AF=B7=E6=B1=82=E8=B7=AF=E5=BE=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改 saveAdminCorp 请求路径,添加缺失的斜杠 - 确保请求能够正确发送到后端接口 - 防止请求地址错误导致接口调用失败 --- src/api/unitTypeConfig/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/unitTypeConfig/index.js b/src/api/unitTypeConfig/index.js index 63f07ef..bd336b1 100644 --- a/src/api/unitTypeConfig/index.js +++ b/src/api/unitTypeConfig/index.js @@ -34,5 +34,5 @@ export const getTenantTypes = declareRequest( ); export const saveAdminCorp = declareRequest( "saveAdminCorpLoading", - "Post > appmenu/tenantTypeConfig/saveAdminCorp", + "Post > /appmenu/tenantTypeConfig/saveAdminCorp", );