From 157476e37c39931ee026a2ca6fde0d09383884d3 Mon Sep 17 00:00:00 2001 From: zhangwei <1504152376@qq.com> Date: 星期五, 01 八月 2025 15:53:50 +0800 Subject: [PATCH] '企业资料审核' --- Web/src/api/base/index.ts | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/Web/src/api/base/index.ts b/Web/src/api/base/index.ts index e554f78..ca2df9e 100644 --- a/Web/src/api/base/index.ts +++ b/Web/src/api/base/index.ts @@ -28,6 +28,19 @@ 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) { return request({ url: baseUrl + "dropdownData", -- Gitblit v1.9.1