mirror of
https://git.schule.click/GymSedan/SISSy.git
synced 2024-11-22 09:15:07 +01:00
Automatisches Reload für Vertretungsplan eingebaut
This commit is contained in:
parent
420b4ef469
commit
57c2f90036
1 changed files with 15 additions and 4 deletions
|
@ -40,6 +40,7 @@
|
||||||
elevation="2"
|
elevation="2"
|
||||||
>
|
>
|
||||||
<Vertretungsplan
|
<Vertretungsplan
|
||||||
|
ref="vp"
|
||||||
vpUrl="/stundenplan/proxy.php?file=G014"
|
vpUrl="/stundenplan/proxy.php?file=G014"
|
||||||
/>
|
/>
|
||||||
</v-sheet>
|
</v-sheet>
|
||||||
|
@ -54,6 +55,7 @@
|
||||||
elevation="2"
|
elevation="2"
|
||||||
>
|
>
|
||||||
<Newsreader
|
<Newsreader
|
||||||
|
ref="nr"
|
||||||
:feedUrls="['/stundenplan/proxy.php?file=rsslul', '/stundenplan/proxy.php?file=rsssul']"
|
:feedUrls="['/stundenplan/proxy.php?file=rsslul', '/stundenplan/proxy.php?file=rsssul']"
|
||||||
/>
|
/>
|
||||||
</v-sheet>
|
</v-sheet>
|
||||||
|
@ -84,16 +86,25 @@ export default {
|
||||||
'Vertretungsplan',
|
'Vertretungsplan',
|
||||||
'Stundenpläne'
|
'Stundenpläne'
|
||||||
],
|
],
|
||||||
|
reloadTime: 600000
|
||||||
}),
|
}),
|
||||||
|
|
||||||
props: {
|
|
||||||
msg: String
|
|
||||||
},
|
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
Newsreader,
|
Newsreader,
|
||||||
Vertretungsplan
|
Vertretungsplan
|
||||||
},
|
},
|
||||||
|
|
||||||
|
created() {
|
||||||
|
setTimeout(this.onTimeout, this.reloadTime)
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
onTimeout () {
|
||||||
|
// Reload-Event einrichten
|
||||||
|
this.$refs.nr.reload()
|
||||||
|
this.$refs.vp.reload()
|
||||||
|
setTimeout(this.onTimeout, this.reloadTime)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
Loading…
Reference in a new issue