mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
change all url to static files, in order to change easily
This commit is contained in:
parent
b49a8e24c6
commit
5fca38611e
@ -42,7 +42,9 @@
|
|||||||
"vue-splitpane": "1.0.4",
|
"vue-splitpane": "1.0.4",
|
||||||
"vuedraggable": "2.20.0",
|
"vuedraggable": "2.20.0",
|
||||||
"vuex": "3.1.0",
|
"vuex": "3.1.0",
|
||||||
"xlsx": "0.14.1"
|
"xlsx": "0.14.1",
|
||||||
|
"xterm": "^5.3.0",
|
||||||
|
"xterm-addon-fit": "^0.8.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@vue/cli-plugin-babel": "4.4.4",
|
"@vue/cli-plugin-babel": "4.4.4",
|
||||||
|
2
src/config/APIconfig.js
Normal file
2
src/config/APIconfig.js
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
// src/config/apiConfig.js
|
||||||
|
export const API_URL = 'http://localhost:3000'
|
@ -24,6 +24,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { API_URL } from '@/config/APIconfig'
|
||||||
export default {
|
export default {
|
||||||
name: 'DashboardAdmin',
|
name: 'DashboardAdmin',
|
||||||
data() {
|
data() {
|
||||||
@ -36,7 +37,7 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
fetchTableData() {
|
fetchTableData() {
|
||||||
fetch('http://localhost:5000/dashboard/nodes', {
|
fetch(API_URL + '/dashboard/nodes', {
|
||||||
method: 'Get',
|
method: 'Get',
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json'
|
'Content-Type': 'application/json'
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
import { API_URL } from '@/config/APIconfig'
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -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(API_URL + `/route/add_policy?router=${this.router}`, data, {
|
||||||
headers: { 'Content-Type': 'application/json' }
|
headers: { 'Content-Type': 'application/json' }
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
import { API_URL } from '@/config/APIconfig'
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -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}`,
|
API_URL + `/route/del_policy?router=${this.router}`,
|
||||||
{
|
{
|
||||||
headers: { 'Content-Type': 'application/json' },
|
headers: { 'Content-Type': 'application/json' },
|
||||||
data
|
data
|
||||||
|
@ -35,6 +35,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { API_URL } from '@/config/APIconfig'
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -57,7 +58,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(API_URL + `/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 // 保存策略数据
|
||||||
|
@ -35,6 +35,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { API_URL } from '@/config/APIconfig'
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -57,7 +58,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(API_URL + `/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 // 保存策略数据
|
||||||
|
@ -41,6 +41,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { API_URL } from '@/config/APIconfig'
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -62,7 +63,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(API_URL + `/route/steer?router=${this.router}`, data, {
|
||||||
headers: { 'Content-Type': 'application/json' }
|
headers: { 'Content-Type': 'application/json' }
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { API_URL } from '@/config/APIconfig'
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -56,7 +57,7 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
fetchScheduleDecision() {
|
fetchScheduleDecision() {
|
||||||
axios
|
axios
|
||||||
.get('http://localhost:5060/schedule')
|
.get(API_URL + '/schedule')
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
const data = response.data
|
const data = response.data
|
||||||
this.averageResources = data.average_resource || []
|
this.averageResources = data.average_resource || []
|
||||||
|
@ -1,14 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<div style="margin:0 0 5px 20px">
|
<el-upload class="upload-demo" drag action="https://jsonplaceholder.typicode.com/posts/" multiple>
|
||||||
Fixed header, sorted by header order,
|
<i class="el-icon-upload" />
|
||||||
</div>
|
<div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
|
||||||
<fixed-thead />
|
<div slot="tip" class="el-upload__tip">只能上传yaml文件,且不超过500kb</div>
|
||||||
|
</el-upload>
|
||||||
<div style="margin:30px 0 5px 20px">
|
|
||||||
Not fixed header, sorted by click order
|
|
||||||
</div>
|
|
||||||
<unfixed-thead />
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -18,7 +14,11 @@ import UnfixedThead from './components/UnfixedThead'
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'DynamicTable',
|
name: 'DynamicTable',
|
||||||
components: { FixedThead, UnfixedThead }
|
components: { FixedThead, UnfixedThead },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
tableData: [] // 初始为空数组,将在 mounted 时获取数据
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user