consult.phtml
2.06 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
42
43
44
45
46
47
48
49
50
51
{{> layout/header}}
<div class="consult-me-page me-page yoho-page clearfix">
{{# consult}}
{{> home/path}}
{{> home/navigation}}
<div class="me-main">
<div class="consult block">
<h2 class="title"></h2>
<div class="me-consult">
{{#if consults}}
<div class="consults">
<table class="consults-table">
<tr>
<th colspan="2" align="left">产品信息</th>
<th colspan="2" align="left">咨询内容</th>
</tr>
{{# consults}}
<tr>
<td style="width:60px;">
<img class="thumb" src="{{thumb}}">
</td>
<td>
<a class="name" href="{{href}}" title="{{name}}">{{name}}</a>
</td>
<td style="width:340px;">
<p class="question">{{question}}</p>
{{#if reply}}
<p class="reply">{{reply}}</p>
{{^}}
<p>问题尚未回答。</p>
{{/if}}
</td>
<td style="width:130px;">{{consultTime}}</td>
</tr>
{{/ consults}}
</table>
</div>
{{/if}}
</div>
{{> home/pager}}
</div>
{{> home/help-us}}
</div>
{{/ consult}}
</div>
{{> layout/footer}}