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.
18 lines
796 B
18 lines
796 B
<div class="page js_show">
|
|
<div class="weui-header" v-if="product">
|
|
<router-link to="/pages/iot/products" class="weui-header-left">
|
|
<i class="ion ion-ios-arrow-back"></i>
|
|
</router-link>
|
|
<h1 class="weui-header-title">{{product.name}}</h1>
|
|
</div>
|
|
<div class="main">
|
|
<div class="row" v-if="product">
|
|
<router-link v-for="device in product.devices" :to="{path:'/pages/iot/device',query:{number:device.number}}" class="col-lg-3 col-md-4 col-sm-6 p-3">
|
|
<div class="weui-grid__icon">
|
|
<img :src="config.apigateway+'/IoTCenter'+product.image" />
|
|
</div>
|
|
<p class="weui-grid__label">{{device.displayName}}</p>
|
|
</router-link>
|
|
</div>
|
|
</div>
|
|
</div> |