From 0743445656791c4a07517ce3935d35f9508d4137 Mon Sep 17 00:00:00 2001 From: zhujiyan <17812234322@163.com> Date: Mon, 20 May 2024 16:06:58 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=91=E6=B5=8B=E7=82=B9=E8=81=94=E8=B0=83?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../supervision-boot/jointDebugList/index.ts | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/api/supervision-boot/jointDebugList/index.ts diff --git a/src/api/supervision-boot/jointDebugList/index.ts b/src/api/supervision-boot/jointDebugList/index.ts new file mode 100644 index 00000000..7444c4b2 --- /dev/null +++ b/src/api/supervision-boot/jointDebugList/index.ts @@ -0,0 +1,32 @@ +import createAxios from '@/utils/request' + +import { SUPERVISION_BOOT } from '@/utils/constantRequest' + +const MAPPING_PATH = SUPERVISION_BOOT + '/tempLine' + +/** + * 提交监测点联调表单数据 + */ +export const addMointorPointTempLinedebug = (data: any) => { + return createAxios({ + url: '/supervision-boot/tempLinedebug/add', + method: 'POST', + data: data + }) +} + +/** + * 根据id获取监测点联调的详细数据 + */ +export const getMointorPointTempLinedebugDetail = (obj: any) => { + let form = new FormData() + form.append('id', obj.id) + return createAxios({ + url:'/supervision-boot/tempLinedebug/getDetail', + method: 'POST', + data:form + }) +} + + +