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/IoTCenter/wwwroot/products.html

19 lines
755 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">
<mt-header title="产品">
<router-link to="/" slot="left">
<mt-button icon="back">back</mt-button>
</router-link>
</mt-header>
<div class="weui-panel__bd">
<div class="weui-grids">
<template v-if="model" v-for="product in model">
<router-link :to="{path:'/IoTCenter/product',query:{number:product.number}}" class="weui-grid">
<div class="weui-grid__icon">
<img :src="'/IoTCenter'+product.image" />
</div>
<p class="weui-grid__label">{{product.name}}{{product.count}}</p>
</router-link>
</template>
</div>
</div>
</div>