From 376f3de70bfdd7905876123ba5a331c0aa176199 Mon Sep 17 00:00:00 2001
From: 小飞侠 <8277136+liaoxujun@user.noreply.gitee.com>
Date: 星期四, 25 九月 2025 09:10:29 +0800
Subject: [PATCH] 修改注册时可以多模块注册
---
Web/src/api/base/index.ts | 15 +--------------
1 files changed, 1 insertions(+), 14 deletions(-)
diff --git a/Web/src/api/base/index.ts b/Web/src/api/base/index.ts
index ca2df9e..5acad82 100644
--- a/Web/src/api/base/index.ts
+++ b/Web/src/api/base/index.ts
@@ -28,20 +28,7 @@
data: { id },
}, cancel);
},
- getParam: function (id: any, cancel: boolean = false) {
- return request({
- url: baseUrl + "getParam",
- method: 'get',
- data: { id },
- }, cancel);
- },
- changeSteps: function (id: any, step, cancel: boolean = false) {
- return request({
- url: baseUrl + `changeSteps/${id}/${step}`,
- method: 'get',
- }, cancel);
- },
- dropdownData: function (data: any, cancel: boolean = false) {
+ dropdownData: function (data:any, cancel: boolean = false) {
return request({
url: baseUrl + "dropdownData",
method: 'post',
--
Gitblit v1.9.1