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 @@ + + +