From 1f26c30a8d1c5e3d9ab262b382284c8ea96f29b2 Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期二, 05 十一月 2024 15:47:17 +0800 Subject: [PATCH] 修改密码 --- src/api/analyse/identify/index.ts | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/src/api/analyse/identify/index.ts b/src/api/analyse/identify/index.ts index 1a19b1e..282da3f 100644 --- a/src/api/analyse/identify/index.ts +++ b/src/api/analyse/identify/index.ts @@ -18,7 +18,6 @@ }); }, - modIdentify: (params: object) => { return request({ url: import.meta.env.VITE_API_URL + '/risk/update/updateIdentification', @@ -27,6 +26,16 @@ }); }, + // 修改辨识方法 + + UpdateIdentifyMethod: (params: object) => { + return request({ + url: import.meta.env.VITE_API_URL + '/risk/update/identificationUpdateMethod', + method: 'post', + data: params + }); + }, + deleteIdentifyById: (params: object) => { return request({ url: import.meta.env.VITE_API_URL + '/risk/delete/deleteIdentification', -- Gitblit v1.9.2