From ebc552900444d25b1158bf53d07f24c9ee36cc75 Mon Sep 17 00:00:00 2001 From: liriming <1343021927@qq.com> Date: 星期一, 20 一月 2025 14:40:57 +0800 Subject: [PATCH] 预警配置 --- src/api/model/pre/dm/index.ts | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/api/model/pre/dm/index.ts b/src/api/model/pre/dm/index.ts index 2dd925c..69e13c3 100644 --- a/src/api/model/pre/dm/index.ts +++ b/src/api/model/pre/dm/index.ts @@ -1,11 +1,10 @@ import request from '@/config/axios' export interface DmModuleVO { - id: string + id: string, modulename: string, moduletype: string, - cycle: string, - modulenavconfig: string + cycle: string } export interface DmModulePageReqVO extends PageParam { @@ -36,3 +35,8 @@ export const deleteDmModule = (id: number) => { return request.delete({ url: '/model/pre/module/delete?id=' + id }) } + +// 查询getModuleList详情 +export const getModuleList = () => { + return request.get({ url: `/model/pre/module/list`}) +} -- Gitblit v1.9.3