Blame view

apps/home/views/action/suggest.hbs 1.95 KB
zhangxiaoru authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<div class="yoho-suggest-page yoho-page">
    {{!-- {{# suggest}} --}}
    <h2 class="suggest-header">
        为了更好的改进我们的服务,提升用户体验,<br />
        我们希望了解您的意见和建议
    </h2>

    <div class="create-new-suggest tap-hightlight">
        <a class="list-item" href="./suggestSub">
            反馈问题 (功能意见,界面意见)<span class="iconfont new-right">&#xe604;</span>
        </a>
    </div>

    <div class="suggest-content" id="suggest-content">
        {{# suggestContent}}
        <div class="suggest-item" data-id="{{id}}">
            {{#if coverImage}}
            <div class="suggest-item-img">
zhangxiaoru authored
19
                <img class="lazy" data-original="{{coverImageUrl}}" alt=""/>
zhangxiaoru authored
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
            </div>
            {{/if}}
            <h2>{{filterContent}}</h2>
            <p>{{replyContent}}</p>

            <div class="suggest-type suggest-good {{#good}}show{{/good}}">
                <div class="active tap-hightlight">
                    <span class="iconfont">&#xe601;</span>
                    <span>靠谱,谢谢您的反馈</span>
                </div>
            </div>
            <div class="suggest-type suggest-bad {{# bad}}show{{/ bad}}">
                <div class="active tap-hightlight">
                    <span class="iconfont">&#xe601;</span>
                    <span>不靠谱,谢谢您的反馈</span>
                </div>
            </div>

            {{# none}}
            <div class="suggest-type suggest-active show">
                <div class="like-btn">
                    <span class="iconfont">&#xe601;</span>
                    <span>靠谱</span>
                </div>
                <div class="dislike-btn">
                    <span class="iconfont">&#xe601;</span>
                    <span>不靠谱</span>
                </div>
            </div>
            {{/ none}}
        </div>

        {{/ suggestContent}}
    </div>
    {{!-- {{/ suggest}} --}}
</div>