reworked with component
This commit is contained in:
parent
03ed6c7309
commit
fae113a935
|
|
@ -24,10 +24,7 @@
|
||||||
<div class='cntr' style='text-align:center;margin-top:20px'>
|
<div class='cntr' style='text-align:center;margin-top:20px'>
|
||||||
<span id="name" ><div class='hdr1'>This device brand name</div></span><br/><br/>
|
<span id="name" ><div class='hdr1'>This device brand name</div></span><br/><br/>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
{{ TimeToISO(status_json.time)}}<br/>
|
<informer></informer>
|
||||||
Uptime: {{ToHms(status_json.uptime)}}<br/><br/>
|
|
||||||
Signal WiFi:<span style="color:#0099ff;font-weight:bold">{{status_json.wlev}}</span><br/>
|
|
||||||
<br/><br/><br/><br/><br/><br/><br/><br/><br/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -42,7 +39,8 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
const app = Vue.createApp({
|
const app = Vue.createApp({});
|
||||||
|
app.component('informer', {
|
||||||
data(){
|
data(){
|
||||||
return {
|
return {
|
||||||
status: true,
|
status: true,
|
||||||
|
|
@ -72,14 +70,18 @@
|
||||||
this.getData()
|
this.getData()
|
||||||
},
|
},
|
||||||
created(){
|
created(){
|
||||||
this.interval = setInterval(() =>{
|
this.interval = setInterval(() => {this.getData()},1000)
|
||||||
this.getData()},1000)
|
|
||||||
},
|
},
|
||||||
destroyed(){
|
destroyed(){
|
||||||
clearInterval(this.interval)
|
clearInterval(this.interval)
|
||||||
}
|
},
|
||||||
|
template:`{{TimeToISO(status_json.time)}}<br/>
|
||||||
|
Uptime:{{ToHms(status_json.uptime)}}<br/><br/>
|
||||||
|
Signal WiFi:<span style="color:#0099ff;font-weight:bold">{{status_json.wlev}}</span><br/>
|
||||||
|
<br/><br/><br/><br/>`
|
||||||
|
});
|
||||||
|
app.mount('#app');
|
||||||
|
|
||||||
}).mount('#app');
|
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
Reference in New Issue
Block a user