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'
|
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: '服务部署' }
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -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
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
|
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' }
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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) {
|
||||||
|
@ -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 // 保存策略数据
|
||||||
|
@ -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 数据
|
||||||
|
@ -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 // 保存策略数据
|
||||||
|
@ -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' }
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -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 || []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user