complaints.phtml 3.66 KB
{{> 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}}