complaints.phtml
3.66 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{{> layout/header}}
<div class="complaint-me-page me-page yoho-page clearfix">
{{# complaints}}
{{> home/path}}
{{> home/navigation}}
<div class="me-main">
<div class="complaint block">
<h2 class="title"></h2>
<div class="me-complaints">
{{#if complaints.empty}}
{{#with complaints}}
{{> home/empty}}
{{/with}}
{{^}}
{{# complaints}}
<div class="consults">
</div>
{{/ complaints}}
{{/if}}
</div>
<div class="complaint-form">
<form action="complaints/addmycomp" method="post" id="add_complaints">
<h2>我要投诉</h2>
<div class="form-content">
<dl>
<dt>投诉主题:</dt>
<dd>
<input name="caption" id="caption" type="text" class="input_1" style="width:150px;">
<span class="onShow" id="captionTip">请输入您的投诉主题</span>
</dd>
</dl>
<dl>
<dt>投诉对象:</dt>
<dd>
<input name="customer" id="customer" type="text" class="input_1" style="width:150px;">
<span class="onShow" id="customerTip">请填写您要投诉的对象,比如:客服00*号、发货员...</span>
</dd>
</dl>
<dl>
<dt>投诉类型:</dt>
<dd>
<select name="type" id="type" size="1">
<option value="0">所有</option>
<option value="1">产品相关</option>
<option value="2">物流相关</option>
</select>
</dd>
</dl>
<dl>
<dt>涉及订单:</dt>
<dd>
<input name="order" id="order" type="text" class="input_1" style="width:150px;">
<span class="onShow" id="orderTip">如果多个是多个订单号,请用英文逗号隔开,没有则不填</span> </dd>
</dd>
</dl>
<dl>
<dt>投诉内容:</dt>
<dd>
<textarea name="comment" id="comment" cols="" rows="" class="textarea_1" style="width: 400px; height: 80px; margin: 0px;"></textarea>
<span class="onShow" id="commentTip">输入您投诉的内容</span>
</dd>
</dl>
</div>
<div class="form-submit">
<input type="submit" value="提交投诉内容" id="complaint-submit">
</div>
</form>
</div>
</div>
{{> home/help-us}}
</div>
{{/ complaints}}
</div>
{{> layout/footer}}