| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- ${zhiqim_manager_breadcrumb("短信日志")}
- ${zhiqim_manager_content()}
- <#-- 导航栏 -->
- <div class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
- <nav>
- <ul>
- <#if ZmrPathRule.check(request, "/orderList.htm")><li onclick="Z.L.href('orderList.htm');">订单列表</li></#if>
- <#if ZmrPathRule.check(request, "/orderLogList.htm")><li onclick="Z.L.href('orderLogList.htm');">订单日志</li></#if>
- <li class="z-active">短信日志</li>
- </ul>
- <div class="z-float-left z-mg10 z-lh30">
- <form name="theForm" action="/smsSendLog.htm">
- <select name="sendStatus" class="z-float-left z-select ${zmr_color_class} z-w150 zi-bd-r-none">
- <option value="">全部</option>
- <option value="0" <#if sendStatus == 0>selected</#if>>成功</option>
- <option value="1" <#if sendStatus == 1>selected</#if>>失败</option>
- <option value="2" <#if sendStatus == 2>selected</#if>>未发送</option>
- </select>
- <input class="z-float-left z-input ${zmr_color_class} z-w150 zi-bd-r-none" name="designId" value="${designId}" placeholder="订单号"/>
- <input class="z-float-left z-input ${zmr_color_class} z-w150 zi-bd-r-none" name="mobile" value="${mobile}" placeholder="手机号"/>
- <button class="z-float-left z-button z-w80 zi-bd-rd0 z-blue"><i class="z-font z-query"></i>查询</button>
- <button class="z-float-left z-button z-mg-l10" type="button" onclick="Z.Forms.clearForm(this.form);">清空</button>
- </form>
- </div>
- </nav>
- </div>
- <table class="z-table z-bordered z-bg-white z-pd6">
- <tr>
- <td class="z-h40 z-text-left z-bold z-px14 z-bg-white" colspan="8"> 短信日志列表</td>
- </tr>
- <tr class="z-text-center z-h40" bgcolor="${zmr_thead_bgcolor}">
- <td width="10%">订单号</td>
- <td width="10%">手机号</td>
- <td width="10%">发送状态</td>
- <td width="10%">发送时间</td>
- <td width="10%">报告状态</td>
- <td width="10%">报告描述</td>
- <td width="*">短信内容</td>
- </tr>
- <#if pageResult.size() == 0>
- <tr valign="middle" class="z-text-center z-bg-white z-h40">
- <td colspan="8">暂不存在短信日志信息</td>
- </tr>
- </#if>
- <#for item : pageResult.list()>
- <tr align="center" class="z-h40" ${zhiqim_manager_tr_onmouse()}>
- <td>${item.getDesignId()}</td>
- <td>${item.getMobile()}</td>
- <td>
- <#if item.getSendStatus() ==0>发送成功</#if>
- <#if item.getSendStatus() ==1>发送失败</#if>
- <#if item.getSendStatus() ==2>未发送</#if>
- </td>
- <td>${item.getSendTime()}</td>
- <td>${item.getRetStatus()}</td>
- <td>${item.getRetDesc()}</td>
- <td>${item.getContent()}</td>
- </tr>
- </#for>
- </table>
- ${zhiqim_manager_paging(pageResult, "/smsSendLog.htm")}
- ${zhiqim_manager_content_end()}
|