From d0a9ae06940a930cba6184dbfe28323c5582f634 Mon Sep 17 00:00:00 2001 From: handsomewu <562390063@qq.com> Date: Wed, 13 Nov 2024 19:52:58 +0800 Subject: [PATCH] change ports --- src/router/modules/table.js | 18 +++++++++--------- src/views/dashboard/admin/index.vue | 2 +- src/views/deploy/app.vue | 0 src/views/deploy/service.vue | 0 src/views/route/add_policy.vue | 2 +- src/views/route/del_policy.vue | 2 +- src/views/route/del_steer.vue | 2 +- src/views/route/show_paths.vue | 2 +- src/views/route/show_policy.vue | 2 +- src/views/route/show_sid.vue | 2 +- src/views/route/show_steer.vue | 2 +- src/views/route/steer.vue | 2 +- src/views/schedule/index.vue | 2 +- 13 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 src/views/deploy/app.vue create mode 100644 src/views/deploy/service.vue diff --git a/src/router/modules/table.js b/src/router/modules/table.js index d5b2b09e..f87def56 100644 --- a/src/router/modules/table.js +++ b/src/router/modules/table.js @@ -3,25 +3,25 @@ import Layout from '@/layout' const tableRouter = { - path: '/table', + path: '/deploy', component: Layout, - redirect: '/table/complex-table', - name: 'Table', + redirect: '/deploy/app', + name: 'Deploy', meta: { title: '算力请求', icon: 'edit' }, children: [ { - path: 'dynamic-table', - component: () => import('@/views/table/dynamic-table/index'), - name: 'DynamicTable', + path: 'app', + component: () => import('@/views/deploy/app.vue'), + name: 'DeployApp', meta: { title: '应用部署' } }, { - path: 'drag-table', - component: () => import('@/views/table/drag-table'), - name: 'DragTable', + path: 'service', + component: () => import('@/views/deploy/service.vue'), + name: 'DeployService', meta: { title: '服务部署' } } ] diff --git a/src/views/dashboard/admin/index.vue b/src/views/dashboard/admin/index.vue index 8b1f1648..2a2ca9aa 100644 --- a/src/views/dashboard/admin/index.vue +++ b/src/views/dashboard/admin/index.vue @@ -36,7 +36,7 @@ export default { }, methods: { fetchTableData() { - fetch('http://localhost:5000/dashboard/nodes', { + fetch('http://localhost:3000/dashboard/nodes', { method: 'Get', headers: { 'Content-Type': 'application/json' diff --git a/src/views/deploy/app.vue b/src/views/deploy/app.vue new file mode 100644 index 00000000..e69de29b diff --git a/src/views/deploy/service.vue b/src/views/deploy/service.vue new file mode 100644 index 00000000..e69de29b diff --git a/src/views/route/add_policy.vue b/src/views/route/add_policy.vue index 8a94ca40..c3075691 100644 --- a/src/views/route/add_policy.vue +++ b/src/views/route/add_policy.vue @@ -62,7 +62,7 @@ export default { sids: this.sids } - const response = await axios.post(`http://localhost:5060/route/add_policy?router=${this.router}`, data, { + const response = await axios.post(`http://localhost:3000/route/add_policy?router=${this.router}`, data, { headers: { 'Content-Type': 'application/json' } }) diff --git a/src/views/route/del_policy.vue b/src/views/route/del_policy.vue index cc0dbe16..c7847ade 100644 --- a/src/views/route/del_policy.vue +++ b/src/views/route/del_policy.vue @@ -64,7 +64,7 @@ export default { // 发送 DELETE 请求 const response = await axios.delete( - `http://localhost:5060/route/del_policy?router=${this.router}`, + `http://localhost:3000/route/del_policy?router=${this.router}`, { headers: { 'Content-Type': 'application/json' }, data diff --git a/src/views/route/del_steer.vue b/src/views/route/del_steer.vue index 4d2f3f8b..fcb1bbd3 100644 --- a/src/views/route/del_steer.vue +++ b/src/views/route/del_steer.vue @@ -64,7 +64,7 @@ export default { // 发送 DELETE 请求 const response = await axios.delete( - `http://localhost:5060/route/del_steer?router=${this.router}`, + `http://localhost:3000/route/del_steer?router=${this.router}`, { headers: { 'Content-Type': 'application/json' }, data diff --git a/src/views/route/show_paths.vue b/src/views/route/show_paths.vue index 74eed06c..de6badae 100644 --- a/src/views/route/show_paths.vue +++ b/src/views/route/show_paths.vue @@ -45,7 +45,7 @@ export default { this.loading = true this.error = null axios - .get('http://localhost:5060/route/show_paths') + .get('http://localhost:3000/route/show_paths') .then((response) => { // 检查响应中是否有 paths 数据 if (response.data && response.data.paths) { diff --git a/src/views/route/show_policy.vue b/src/views/route/show_policy.vue index 84b02d94..96af3e3f 100644 --- a/src/views/route/show_policy.vue +++ b/src/views/route/show_policy.vue @@ -57,7 +57,7 @@ export default { this.loading = true this.error = null axios - .get(`http://localhost:5060/route/show_policy`, { params: { router: this.selectedRouter }}) + .get(`http://localhost:3000/route/show_policy`, { params: { router: this.selectedRouter }}) .then((response) => { if (response.data && response.data.policies) { this.policyData = response.data.policies // 保存策略数据 diff --git a/src/views/route/show_sid.vue b/src/views/route/show_sid.vue index 694a7432..7eb24ad6 100644 --- a/src/views/route/show_sid.vue +++ b/src/views/route/show_sid.vue @@ -57,7 +57,7 @@ export default { this.loading = true this.error = null axios - .get(`http://localhost:5060/route/show_sid`, { params: { router: this.selectedRouter }}) + .get(`http://localhost:3000/route/show_sid`, { params: { router: this.selectedRouter }}) .then((response) => { if (response.data && response.data.localsids) { this.sidData = response.data.localsids // 保存 SID 数据 diff --git a/src/views/route/show_steer.vue b/src/views/route/show_steer.vue index 7bd313e6..eb40c450 100644 --- a/src/views/route/show_steer.vue +++ b/src/views/route/show_steer.vue @@ -57,7 +57,7 @@ export default { this.loading = true this.error = null axios - .get(`http://localhost:5060/route/show_steer`, { params: { router: this.selectedRouter }}) + .get(`http://localhost:3000/route/show_steer`, { params: { router: this.selectedRouter }}) .then((response) => { if (response.data && response.data.steering_policies) { this.policyData = response.data.steering_policies // 保存策略数据 diff --git a/src/views/route/steer.vue b/src/views/route/steer.vue index fb1bc0b2..cc9815cb 100644 --- a/src/views/route/steer.vue +++ b/src/views/route/steer.vue @@ -62,7 +62,7 @@ export default { ip_prefix: this.ip_prefix } - const response = await axios.post(`http://localhost:5060/route/steer?router=${this.router}`, data, { + const response = await axios.post(`http://localhost:3000/route/steer?router=${this.router}`, data, { headers: { 'Content-Type': 'application/json' } }) diff --git a/src/views/schedule/index.vue b/src/views/schedule/index.vue index 707707e4..8687ad53 100644 --- a/src/views/schedule/index.vue +++ b/src/views/schedule/index.vue @@ -56,7 +56,7 @@ export default { methods: { fetchScheduleDecision() { axios - .get('http://localhost:5060/schedule') + .get('http://localhost:3000/schedule') .then((response) => { const data = response.data this.averageResources = data.average_resource || []