reference.hbs 1.61 KB
{{#if reference}}
    <div class="description-material-tab info-block">
        <p class="block-title">
            <span class="title-head"> <span class="title cur">试穿参考</span> </span>
        </p>

        <div class="model-content">
            <div class="reference">
                {{# reference}}
                    <table class="reference-table">
                        <thead>
                        <tr>
                            {{# thead}}
                                <th class="{{#if @first}}avatar-col{{/if}}{{#if modelCol}}model-col{{/if}}{{#if remarkCol}}remark-col{{/if}}">{{name}}</th>
                            {{/ thead}}
                        </tr>
                        </thead>

                        <tbody>
                        {{# tbody}}
                            <tr>
                                {{#each .}}
                                    <td>
                                        {{#if @first}}
                                            <img class="avatar" src="{{image2 .}}">
                                        {{^}}
                                            {{.}}
                                        {{/if}}
                                    </td>
                                {{/each}}
                            </tr>
                        {{/ tbody}}
                        </tbody>
                    </table>
                {{/ reference}}
                <p class="size-tip">
                    ※ 模特试穿中身高单位:CM,体重单位:KG,三围单位:CM
                </p>
            </div>

        </div>
    </div>
{{/if}}