| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- ${Scripts.src("/zinc/js/globalcomplain_2019010801.js")}
- <script>
- function doQueryComplainDeal(){
- var complainId = Z.FM.getChecked("complainId");
- if (Z.V.isEmpty(complainId))
- {
- Z.alert("请选择一条订单");
- return;
- }
-
- var dialog = new Z.Dialog();
- dialog.title = "投诉单号:"+complainId;
- dialog.url = "/complainDeal.htm?complainId="+complainId;
- dialog.width = 900;
- dialog.height = 500;
- dialog.execute();
- }
- function doQueryComplainDetail(){
- var complainId = Z.FM.getChecked("complainId");
- if (Z.V.isEmpty(complainId))
- {
- Z.alert("请选择一条订单");
- return;
- }
-
- var dialog = new Z.Dialog();
- dialog.title = "投诉单号:"+complainId;
- dialog.url = "/complainDetail.htm?complainId="+complainId;
- dialog.width = 1000;
- dialog.height = 500;
- dialog.execute();
- }
- </script>
- ${zhiqim_manager_breadcrumb("我的投诉")}
- ${zhiqim_manager_content()}
- <#-- 左侧功能 -->
- <#-- 查询条件 -->
- ${zhiqim_manager_title("查询条件")}
- <form name="theForm" action="/complainWantDealList.htm">
- <table class="z-table z-bordered z-pd6 z-bg-white">
- <tr class="z-h40">
- <td>订单编号:<input name="designId" class="${zmr_color_class} z-input z-w180" value="${designId}" maxlength="64" placeholder="订单编号"></td>
- <td>投诉单号:<input name="complainId" class="${zmr_color_class} z-input z-w180" value="${complainId}" maxlength="64" placeholder="投诉单号"></td>
- <td>
- 受理状态:<select name="complainStatus" class="z-select z-w180" data-role="z-select" data-class="${zmr_color_class}">
- <option value="">全部</option>
- <#for item : ComplainConstants.getList()>
- <option value="${item.value()}" <#if complainStatus == item.value()>selected</#if>>${item.desc()}</option>
- </#for>
- </select>
- </td>
- <td>旺旺号:<input class="z-input ${zmr_color_class} z-w160" name="buyerNick" value="${buyerNick}" maxlength="32" placeholder="旺旺号"/></td>
- <tr>
- </tr class="z-h40">
- <td>店铺名称:<select name="shopNick" class="z-select z-w180" data-role="z-select" data-class="${zmr_color_class}">
- <option value="">全部</option>
- <#for item : shopNickList>
- <option value="${item}" <#if shopNick == item>selected</#if>>${item}</option>
- </#for>
- </select>
- </td>
- <td>
- 受理时间:<input id="startDate" name="startDate" class="z-input z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${startDate}"> -
- <input id="endDate" name="endDate" class="z-input z-mg-l3 z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${endDate}">
- </td>
- <td colspan="2"><button class="z-button z-large z-w120 z-mg-r15 ${zmr_color_class}">查询</button><button class="z-button z-large" type="button" onclick="Z.FM.clearForm(this.form);">清空</button></td>
- </tr>
- </table>
- </form>
- <#-- 操作功能 -->
- <div class="z-w100p z-mg-t10 z-mg-b3">
- <button id="queryComplainDetail" class="z-button z-blue z-mg-r6" onclick="doQueryComplainDeal();"><i class="z-font z-modify"></i>投诉单处理</button>
- <button id="queryComplainDetail" class="z-button z-blue z-mg-r6" onclick="doQueryComplainDetail();"><i class="z-font z-modify"></i>查看投诉单</button>
- </div>
- <#-- 列表 -->
- <table class="z-table z-bordered z-h40-tr z-pd5 z-bg-white z-text-center" style="height:auto;">
- <tr bgcolor="${zmr_thead_bgcolor}">
- <td width="60">选择</td>
- <td width="150">订单编号</td>
- <td width="130">旺旺号</td>
- <td width="120">店铺</td>
- <td width="110">受理状态</td>
- <td width="100">受理时间</td>
- <td width="*" style="min-width:210px">产品</td>
- <td width="90">订单金额</td>
- <td width="150">投诉类型</td>
- </tr>
- ${zhiqim_manager_tr_no_record(pageResult, 17, "暂时没有待处理的投诉")}
- <#for item : pageResult.list()>
- <input id="buyerNick_${item.getComplainId()}" type="hidden" value="${item.getBuyerNick()}">
- <tr class="z-pointer <#if item.isSatrapAssist()>z-text-red</#if>" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
- <td><input name="complainId" type="radio" data-role="z-radio" data-class="${zmr_color_class}" value="${item.getComplainId()}"></td>
- <td>${item.getDesignId()}<p style="color:#000000">TS:${item.getComplainId()}</p></td>
- <td>${item.getBuyerNick()}</td>
- <td>${item.getShopNick()}</td>
- <td>${ComplainConstants.getStatus(item.getComplainStatus())}</td>
- <td>${Sqls.toDateTimeString(item.getComplainAddTime())}</td>
- <td>${item.getOrderText()}</td>
- <td>${Amounts.toYuanMustRadix(item.getAmount())}</td>
- <td>${item.getComplainType()}</td>
- </tr>
- </#for>
- ${zhiqim_manager_paging(pageResult, "/complainWantDealList.htm")}
- </table>
- ${zhiqim_manager_content_end()}
- <#-- 联系旺旺&联系QQ弹窗框 -->
- <iframe id="openFrm" class="z-hide" src="about:blank"></iframe>
|