Blame view

template/m.yohobuy.com/actions/index/home/suggest.phtml 1.38 KB
lore-w authored
1 2 3 4 5 6 7 8 9 10
{{> layout/header}}
<div class="yoho-suggest-page yoho-page">
    {{# suggest}}
    <h2 class="suggest-header">
        为了更好的改进我们的服务,提升用户体验,<br />
        我们希望了解您的意见和建议
    </h2>

    <div class="suggest-content" id="suggest-content">
        {{# suggestContent}}
lore-w authored
11
        <div class="suggest-item" data-id="{{suggest_id}}">
lore-w authored
12 13 14 15
            <img src="{{imgUrl}}" alt=""/>
            <h2>{{title}}</h2>
            <p>{{content}}</p>
lore-w authored
16 17
            <div class="suggest-type {{^ good}}show{{/ good}}">
                <div class="like-btn">
lore-w authored
18 19 20
                    <span class="iconfont">&#xe601;</span>
                    <span>靠谱</span>
                </div>
lore-w authored
21
                <div class="dislike-btn {{# bad}}active{{/ bad}}">
lore-w authored
22 23 24 25 26
                    <span class="iconfont">&#xe601;</span>
                    <span>不靠谱</span>
                </div>
            </div>
lore-w authored
27
            <div class="like-btn active suggest-type {{# good}}show{{/ good}}">
lore-w authored
28 29 30 31 32 33
                <span class="iconfont">&#xe601;</span>
                <span>靠谱,谢谢您的反馈</span>
            </div>
        </div>
        {{/ suggestContent}}
    </div>
lore-w authored
34
    <a class="create-new-suggest" href="./suggestSub">
lore-w authored
35 36
        反馈问题<span>(功能意见,界面意见)</span>
    </a>
lore-w authored
37 38 39
    {{/ suggest}}
</div>
{{> layout/footer}}