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' import Layout from '@/layout'
const tableRouter = { const tableRouter = {
path: '/table', path: '/deploy',
component: Layout, component: Layout,
redirect: '/table/complex-table', redirect: '/deploy/app',
name: 'Table', name: 'Deploy',
meta: { meta: {
title: '算力请求', title: '算力请求',
icon: 'edit' icon: 'edit'
}, },
children: [ children: [
{ {
path: 'dynamic-table', path: 'app',
component: () => import('@/views/table/dynamic-table/index'), component: () => import('@/views/deploy/app.vue'),
name: 'DynamicTable', name: 'DeployApp',
meta: { title: '应用部署' } meta: { title: '应用部署' }
}, },
{ {
path: 'drag-table', path: 'service',
component: () => import('@/views/table/drag-table'), component: () => import('@/views/deploy/service.vue'),
name: 'DragTable', name: 'DeployService',
meta: { title: '服务部署' } meta: { title: '服务部署' }
} }
] ]

View File

@ -36,7 +36,7 @@ export default {
}, },
methods: { methods: {
fetchTableData() { fetchTableData() {
fetch('http://localhost:5000/dashboard/nodes', { fetch('http://localhost:3000/dashboard/nodes', {
method: 'Get', method: 'Get',
headers: { headers: {
'Content-Type': 'application/json' '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 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' } headers: { 'Content-Type': 'application/json' }
}) })

View File

@ -64,7 +64,7 @@ export default {
// DELETE // DELETE
const response = await axios.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' }, headers: { 'Content-Type': 'application/json' },
data data

View File

@ -64,7 +64,7 @@ export default {
// DELETE // DELETE
const response = await axios.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' }, headers: { 'Content-Type': 'application/json' },
data data

View File

@ -45,7 +45,7 @@ export default {
this.loading = true this.loading = true
this.error = null this.error = null
axios axios
.get('http://localhost:5060/route/show_paths') .get('http://localhost:3000/route/show_paths')
.then((response) => { .then((response) => {
// paths // paths
if (response.data && response.data.paths) { if (response.data && response.data.paths) {

View File

@ -57,7 +57,7 @@ export default {
this.loading = true this.loading = true
this.error = null this.error = null
axios 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) => { .then((response) => {
if (response.data && response.data.policies) { if (response.data && response.data.policies) {
this.policyData = response.data.policies // this.policyData = response.data.policies //

View File

@ -57,7 +57,7 @@ export default {
this.loading = true this.loading = true
this.error = null this.error = null
axios 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) => { .then((response) => {
if (response.data && response.data.localsids) { if (response.data && response.data.localsids) {
this.sidData = response.data.localsids // SID this.sidData = response.data.localsids // SID

View File

@ -57,7 +57,7 @@ export default {
this.loading = true this.loading = true
this.error = null this.error = null
axios 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) => { .then((response) => {
if (response.data && response.data.steering_policies) { if (response.data && response.data.steering_policies) {
this.policyData = response.data.steering_policies // this.policyData = response.data.steering_policies //

View File

@ -62,7 +62,7 @@ export default {
ip_prefix: this.ip_prefix 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' } headers: { 'Content-Type': 'application/json' }
}) })

View File

@ -56,7 +56,7 @@ export default {
methods: { methods: {
fetchScheduleDecision() { fetchScheduleDecision() {
axios axios
.get('http://localhost:5060/schedule') .get('http://localhost:3000/schedule')
.then((response) => { .then((response) => {
const data = response.data const data = response.data
this.averageResources = data.average_resource || [] this.averageResources = data.average_resource || []