Blame view

public/hbs/material/tbl.hbs 733 Bytes
王水玲 authored
1 2 3 4 5 6 7 8 9 10 11 12 13
<table  border="1" class="table">
    <tr>
        <th>skn</th>
        <th>商品前台名称</th>
        <th>默认图片</th>
        <th>经典款型</th>
        <th>风格</th>
        <th>图案纹理</th>
        <th>工艺元素</th>
    </tr>
    {{#each product_list}}
        <tr>
            <td>{{productSkn}}</td>
姜枫 authored
14 15
            <td><a href="//item.yohobuy.com/p{{productId}}.html" target="_blank">{{productName}}</a></td>
            <td><a href="//item.yohobuy.com/p{{productId}}.html" target="_blank"><img src="{{picImgUrl}}" alt=""></a></td>
王水玲 authored
16 17 18 19
            <td>{{standardVal}}</td>
            <td>{{style}}</td>
            <td>{{pattern}}</td>
            <td>{{makeCrafts}}</td>
姜枫 authored
20
        </tr>
王水玲 authored
21
    {{/each}}
姜枫 authored
22
</table>