1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-05 11:18:42 +08:00

change all url to static files, in order to change easily

This commit is contained in:
handsomewu 2024-11-13 19:57:53 +08:00
parent b49a8e24c6
commit 5fca38611e
10 changed files with 30 additions and 21 deletions

View File

@ -42,7 +42,9 @@
"vue-splitpane": "1.0.4",
"vuedraggable": "2.20.0",
"vuex": "3.1.0",
"xlsx": "0.14.1"
"xlsx": "0.14.1",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "4.4.4",

2
src/config/APIconfig.js Normal file
View File

@ -0,0 +1,2 @@
// src/config/apiConfig.js
export const API_URL = 'http://localhost:3000'

View File

@ -24,6 +24,7 @@
</template>
<script>
import { API_URL } from '@/config/APIconfig'
export default {
name: 'DashboardAdmin',
data() {
@ -36,7 +37,7 @@ export default {
},
methods: {
fetchTableData() {
fetch('http://localhost:5000/dashboard/nodes', {
fetch(API_URL + '/dashboard/nodes', {
method: 'Get',
headers: {
'Content-Type': 'application/json'

View File

@ -42,7 +42,7 @@
<script>
import axios from 'axios'
import { API_URL } from '@/config/APIconfig'
export default {
data() {
return {
@ -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(API_URL + `/route/add_policy?router=${this.router}`, data, {
headers: { 'Content-Type': 'application/json' }
})

View File

@ -43,7 +43,7 @@
<script>
import axios from 'axios'
import { API_URL } from '@/config/APIconfig'
export default {
data() {
return {
@ -64,7 +64,7 @@ export default {
// DELETE
const response = await axios.delete(
`http://localhost:5060/route/del_policy?router=${this.router}`,
API_URL + `/route/del_policy?router=${this.router}`,
{
headers: { 'Content-Type': 'application/json' },
data

View File

@ -35,6 +35,7 @@
</template>
<script>
import { API_URL } from '@/config/APIconfig'
import axios from 'axios'
export default {
@ -57,7 +58,7 @@ export default {
this.loading = true
this.error = null
axios
.get(`http://localhost:5060/route/show_policy`, { params: { router: this.selectedRouter }})
.get(API_URL + `/route/show_policy`, { params: { router: this.selectedRouter }})
.then((response) => {
if (response.data && response.data.policies) {
this.policyData = response.data.policies //

View File

@ -35,6 +35,7 @@
</template>
<script>
import { API_URL } from '@/config/APIconfig'
import axios from 'axios'
export default {
@ -57,7 +58,7 @@ export default {
this.loading = true
this.error = null
axios
.get(`http://localhost:5060/route/show_steer`, { params: { router: this.selectedRouter }})
.get(API_URL + `/route/show_steer`, { params: { router: this.selectedRouter }})
.then((response) => {
if (response.data && response.data.steering_policies) {
this.policyData = response.data.steering_policies //

View File

@ -41,6 +41,7 @@
</template>
<script>
import { API_URL } from '@/config/APIconfig'
import axios from 'axios'
export default {
@ -62,7 +63,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(API_URL + `/route/steer?router=${this.router}`, data, {
headers: { 'Content-Type': 'application/json' }
})

View File

@ -37,6 +37,7 @@
</template>
<script>
import { API_URL } from '@/config/APIconfig'
import axios from 'axios'
export default {
@ -56,7 +57,7 @@ export default {
methods: {
fetchScheduleDecision() {
axios
.get('http://localhost:5060/schedule')
.get(API_URL + '/schedule')
.then((response) => {
const data = response.data
this.averageResources = data.average_resource || []

View File

@ -1,14 +1,10 @@
<template>
<div class="app-container">
<div style="margin:0 0 5px 20px">
Fixed header, sorted by header order,
</div>
<fixed-thead />
<div style="margin:30px 0 5px 20px">
Not fixed header, sorted by click order
</div>
<unfixed-thead />
<el-upload class="upload-demo" drag action="https://jsonplaceholder.typicode.com/posts/" multiple>
<i class="el-icon-upload" />
<div class="el-upload__text">将文件拖到此处<em>点击上传</em></div>
<div slot="tip" class="el-upload__tip">只能上传yaml文件且不超过500kb</div>
</el-upload>
</div>
</template>
@ -18,7 +14,11 @@ import UnfixedThead from './components/UnfixedThead'
export default {
name: 'DynamicTable',
components: { FixedThead, UnfixedThead }
components: { FixedThead, UnfixedThead },
data() {
return {
tableData: [] // mounted
}
}
}
</script>