suggest.phtml
1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{{> layout/header}}
<div class="yoho-suggest-page yoho-page">
{{# suggest}}
<h2 class="suggest-header">
为了更好的改进我们的服务,提升用户体验,<br />
我们希望了解您的意见和建议
</h2>
<div class="suggest-content" id="suggest-content">
{{# suggestContent}}
<div class="suggest-item">
<img src="{{imgUrl}}" alt=""/>
<h2>{{title}}</h2>
<p>{{content}}</p>
<!--bad传true表示点了不靠谱,false表示没有任何动作-->
<!--good传true表示点了靠谱,false表示没有任何动作-->
<div id="{{^ good}}show{{/ good}}" class="suggest-type">
<div>
<span class="iconfont"></span>
<span>靠谱</span>
</div>
<div class="{{# bad}}active{{/ bad}}">
<span class="iconfont"></span>
<span>不靠谱</span>
</div>
</div>
<div id="{{# good}}show{{/ good}}" class="suggest-type active">
<span class="iconfont"></span>
<span>靠谱,谢谢您的反馈</span>
</div>
</div>
{{/ suggestContent}}
</div>
<a class="create-new-suggest" href="#">
反馈问题<span>(功能意见,界面意见)</span>
</a>
{{/ suggest}}
</div>
{{> layout/footer}}