optimized api paths
This commit is contained in:
parent
6020620ba9
commit
b5d18cad59
1 changed files with 6 additions and 6 deletions
|
@ -128,7 +128,7 @@
|
|||
},
|
||||
methods: {
|
||||
loadPresets() {
|
||||
this.$http.get('api/deliveryPresets')
|
||||
this.$http.get(window.location.pathname + 'api/deliveryPresets')
|
||||
.then(response => {
|
||||
this.presetSearchItems = response.body.map(x => { return {
|
||||
text: x.name,
|
||||
|
@ -138,7 +138,7 @@
|
|||
})
|
||||
},
|
||||
loadConfig() {
|
||||
this.$http.get('config').then(response => {
|
||||
this.$http.get(window.location.pathname + 'config').then(response => {
|
||||
const newConfig = response.body
|
||||
newConfig.regions = newConfig.regions.map((x) => {
|
||||
x._id = btoa(JSON.stringify(x))
|
||||
|
@ -148,7 +148,7 @@
|
|||
}, response => {
|
||||
})
|
||||
|
||||
this.$http.get('Regionalschl_ssel_2022-09-30.json').then(response => {
|
||||
this.$http.get(window.location.pathname + 'Regionalschl_ssel_2022-09-30.json').then(response => {
|
||||
|
||||
console.log(response.body.daten)
|
||||
this.regionsSearchItems = response.body.daten.map(x => { return {
|
||||
|
@ -165,9 +165,9 @@
|
|||
delete a._id
|
||||
return a
|
||||
})
|
||||
this.$http.post('config', storeConfig).then(response => {
|
||||
this.$http.post(window.location.pathname + 'config', storeConfig).then(response => {
|
||||
})
|
||||
.then(this.$http.post('restart'))
|
||||
.then(this.$http.post(window.location.pathname + 'restart'))
|
||||
.then(() => {
|
||||
document.body.style = 'display:none'
|
||||
setTimeout(() => window.location.reload(), 1e3)
|
||||
|
@ -178,7 +178,7 @@
|
|||
},
|
||||
addAlarm() {
|
||||
this.configData.regions.push({
|
||||
name: "Testalarm",
|
||||
name: "Alarm Name",
|
||||
params: {
|
||||
"type": "simple",
|
||||
"routing": {
|
||||
|
|
Loading…
Add table
Reference in a new issue