search-word-content.hbs 871 Bytes
{{#if @root.suggestion.termsSuggestion}}
    <div class="word-content">
        {{!--相关商品少于指定数据,显示关键词--}}
        <div class="list-too-little">
            {{#if @root.suggestion.isNeedSuggestion}}
                {{#each @root.suggestion.termsSuggestion}}
                    {{#if select}}
                        没有找到相关商品,为您推荐"{{name}}"的搜索结果{{#if @root.suggestion.isNeedSuggestionOne}}或者试试{{/if}}
                    {{/if}}
                {{/each}}
            {{else}}
                相关商品太少了,试试
            {{/if}}

            {{#each @root.suggestion.termsSuggestion}}
                {{#unless select}}
                    <span class="word"><a href="{{link}}">{{name}}</a></span>
                {{/unless}}
            {{/each}}
        </div>
    </div>
{{/if}}