From e375ae8574de2849cf666d7a18a7c21d15d34840 Mon Sep 17 00:00:00 2001 From: GGJ <357021191@qq.com> Date: Mon, 19 Feb 2024 16:38:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E5=89=8D=E7=BD=AE=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E9=A1=B5=E9=9D=A2=20=E8=BF=81=E7=A7=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/Business/index.ts | 26 +++ src/views/pms/Business/terminal/pre.vue | 286 ++++++++++++++++++++++++ 2 files changed, 312 insertions(+) create mode 100644 src/api/Business/index.ts create mode 100644 src/views/pms/Business/terminal/pre.vue diff --git a/src/api/Business/index.ts b/src/api/Business/index.ts new file mode 100644 index 00000000..98cac984 --- /dev/null +++ b/src/api/Business/index.ts @@ -0,0 +1,26 @@ +import createAxios from '@/utils/request' + +// 新增菜单接口 +export function addNode(data: any) { + return createAxios({ + url: '/device-boot/node/addNode', + method: 'post', + data: data + }) +} +//修改前置机 +export function updateNode(data: any) { + return createAxios({ + url: '/device-boot/node/updateNode', + method: 'put', + data: data + }) +} +//删除前置机 +export function delNode(data: any) { + return createAxios({ + url: '/device-boot/node/delNode', + method: 'post', + params: { id: data } + }) +} diff --git a/src/views/pms/Business/terminal/pre.vue b/src/views/pms/Business/terminal/pre.vue new file mode 100644 index 00000000..e2a6f170 --- /dev/null +++ b/src/views/pms/Business/terminal/pre.vue @@ -0,0 +1,286 @@ + + +