1
0
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:
handsomewu 2024-11-13 19:52:58 +08:00
parent b49a8e24c6
commit d0a9ae0694
13 changed files with 19 additions and 19 deletions

View File

@ -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: '服务部署' }
}
]

View File

@ -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
View File

View File

View 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' }
})

View File

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

View File

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

View File

@ -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) {

View File

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

View File

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

View File

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

View File

@ -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' }
})

View File

@ -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 || []