Blame view

template/m.yohobuy.com/actions/index/home/suggest.phtml 1.91 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}}">
12
            {{#if imgUrl}}
lore-w authored
13
            <div class="suggest-item-img">
14
                <img class="lazy" data-original="{{imgUrl}}" alt=""/>
lore-w authored
15
            </div>
16
            {{/if}}
lore-w authored
17 18 19
            <h2>{{title}}</h2>
            <p>{{content}}</p>
lore-w authored
20
            <div class="suggest-type suggest-good {{#good}}show{{/good}}">
21 22 23 24 25
                <div class="active">
                    <span class="iconfont">&#xe601;</span>
                    <span>靠谱,谢谢您的反馈</span>
                </div>
            </div>
lore-w authored
26
            <div class="suggest-type suggest-bad {{# bad}}show{{/ bad}}">
27 28 29 30 31 32 33 34
                <div class="active">
                    <span class="iconfont">&#xe601;</span>
                    <span>不靠谱,谢谢您的反馈</span>
                </div>
            </div>

            {{# none}}
            <div class="suggest-type suggest-active show">
lore-w authored
35
                <div class="like-btn">
lore-w authored
36 37 38
                    <span class="iconfont">&#xe601;</span>
                    <span>靠谱</span>
                </div>
39
                <div class="dislike-btn">
lore-w authored
40 41 42 43
                    <span class="iconfont">&#xe601;</span>
                    <span>不靠谱</span>
                </div>
            </div>
44
            {{/ none}}
lore-w authored
45
        </div>
46
lore-w authored
47 48
        {{/ suggestContent}}
    </div>
lore-w authored
49 50 51 52 53
    <div class="create-new-suggest">
        <a href="./suggestSub">
            反馈问题<span>(功能意见,界面意见)</span>
        </a>
    </div>
lore-w authored
54 55 56
    {{/ suggest}}
</div>
{{> layout/footer}}