diff --git a/src/api/node_group.js b/src/api/node_group.js
new file mode 100644
index 0000000000000000000000000000000000000000..caf91b2bb952d78356678f5015ab61ed67a6cf86
--- /dev/null
+++ b/src/api/node_group.js
@@ -0,0 +1,61 @@
+import axios from './config'
+
+// 节点分组查询
+export function listGroup(data) {
+ return axios({
+ url: '/nodeGroup/list',
+ headers: {
+ 'Content-Type': 'application/json; charset=UTF-8'
+ },
+ method: 'post',
+ data
+ })
+}
+
+// 节点分组新增
+export function addGroup(data) {
+ return axios({
+ url: '/nodeGroup/add',
+ headers: {
+ 'Content-Type': 'application/json; charset=UTF-8'
+ },
+ method: 'post',
+ data
+ })
+}
+
+// 节点分组修改
+export function updateGroup(data) {
+ return axios({
+ url: '/nodeGroup/update',
+ headers: {
+ 'Content-Type': 'application/json; charset=UTF-8'
+ },
+ method: 'post',
+ data
+ })
+}
+
+// 节点分组删除
+export function deleteGroup(data) {
+ return axios({
+ url: '/nodeGroup/delete',
+ headers: {
+ 'Content-Type': 'application/json; charset=UTF-8'
+ },
+ method: 'post',
+ data
+ })
+}
+
+// 查询分组节点列表
+export function nodelist(data) {
+ return axios({
+ url: '/nodegroupinfo/nodelist',
+ headers: {
+ 'Content-Type': 'application/json; charset=UTF-8'
+ },
+ method: 'post',
+ data
+ })
+}
diff --git a/src/pages/node/nodeGroupManager/index.vue b/src/pages/node/nodeGroupManager/index.vue
index d1f32bae50fe07d8d8e5cf4a812de4e2c0f27f75..2fcd8092369b4c2a63654c9483afc9d067502b59 100644
--- a/src/pages/node/nodeGroupManager/index.vue
+++ b/src/pages/node/nodeGroupManager/index.vue
@@ -1,6 +1,8 @@
{{ text }}
+
+
+
+
+
+
@@ -44,17 +52,63 @@
+
+
+
+
+