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>
</template>