You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/WebSPA/wwwroot/pages/iot/nodes.html

18 lines
745 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<div class="page js_show">
<div class="weui-header">
<router-link to="/" class="weui-header-left">
<i class="ion ion-ios-arrow-back"></i>
</router-link>
<h1 class="weui-header-title">智慧教室</h1>
</div>
<div class="main">
<div class="row">
<router-link v-for="node in nodes" :to="{path:'/pages/iot/node',query:{number:node.number}}" class="col-md-2 col-sm-3 col-4 p-3">
<div class="weui-grid__icon">
<img :src="node.image.replace('.png', '.svg')" style="width:32px" />
</div>
<p class="weui-grid__label">{{node.name}}{{node.count}}</p>
</router-link>
</div>
</div>
</div>