mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
change ports
This commit is contained in:
parent
b49a8e24c6
commit
d0a9ae0694
@ -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: '服务部署' }
|
||||
}
|
||||
]
|
||||
|
@ -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'
|
||||
|
0
src/views/deploy/app.vue
Normal file
0
src/views/deploy/app.vue
Normal file
0
src/views/deploy/service.vue
Normal file
0
src/views/deploy/service.vue
Normal file
@ -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' }
|
||||
})
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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) {
|
||||
|
@ -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 // 保存策略数据
|
||||
|
@ -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 数据
|
||||
|
@ -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 // 保存策略数据
|
||||
|
@ -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' }
|
||||
})
|
||||
|
||||
|
@ -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 || []
|
||||
|
Loading…
x
Reference in New Issue
Block a user