smsSendLog.zml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. ${zhiqim_manager_breadcrumb("短信日志")}
  2. ${zhiqim_manager_content()}
  3. <#-- 导航栏 -->
  4. <div class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
  5. <nav>
  6. <ul>
  7. <#if ZmrPathRule.check(request, "/orderList.htm")><li onclick="Z.L.href('orderList.htm');">订单列表</li></#if>
  8. <#if ZmrPathRule.check(request, "/orderLogList.htm")><li onclick="Z.L.href('orderLogList.htm');">订单日志</li></#if>
  9. <li class="z-active">短信日志</li>
  10. </ul>
  11. <div class="z-float-left z-mg10 z-lh30">
  12. <form name="theForm" action="/smsSendLog.htm">
  13. <select name="sendStatus" class="z-float-left z-select ${zmr_color_class} z-w150 zi-bd-r-none">
  14. <option value="">全部</option>
  15. <option value="0" <#if sendStatus == 0>selected</#if>>成功</option>
  16. <option value="1" <#if sendStatus == 1>selected</#if>>失败</option>
  17. <option value="2" <#if sendStatus == 2>selected</#if>>未发送</option>
  18. </select>
  19. <input class="z-float-left z-input ${zmr_color_class} z-w150 zi-bd-r-none" name="designId" value="${designId}" placeholder="订单号"/>
  20. <input class="z-float-left z-input ${zmr_color_class} z-w150 zi-bd-r-none" name="mobile" value="${mobile}" placeholder="手机号"/>
  21. <button class="z-float-left z-button z-w80 zi-bd-rd0 z-blue"><i class="z-font z-query"></i>查询</button>&nbsp;&nbsp;
  22. <button class="z-float-left z-button z-mg-l10" type="button" onclick="Z.Forms.clearForm(this.form);">清空</button>
  23. </form>
  24. </div>
  25. </nav>
  26. </div>
  27. <table class="z-table z-bordered z-bg-white z-pd6">
  28. <tr>
  29. <td class="z-h40 z-text-left z-bold z-px14 z-bg-white" colspan="8">&nbsp;短信日志列表</td>
  30. </tr>
  31. <tr class="z-text-center z-h40" bgcolor="${zmr_thead_bgcolor}">
  32. <td width="10%">订单号</td>
  33. <td width="10%">手机号</td>
  34. <td width="10%">发送状态</td>
  35. <td width="10%">发送时间</td>
  36. <td width="10%">报告状态</td>
  37. <td width="10%">报告描述</td>
  38. <td width="*">短信内容</td>
  39. </tr>
  40. <#if pageResult.size() == 0>
  41. <tr valign="middle" class="z-text-center z-bg-white z-h40">
  42. <td colspan="8">暂不存在短信日志信息</td>
  43. </tr>
  44. </#if>
  45. <#for item : pageResult.list()>
  46. <tr align="center" class="z-h40" ${zhiqim_manager_tr_onmouse()}>
  47. <td>${item.getDesignId()}</td>
  48. <td>${item.getMobile()}</td>
  49. <td>
  50. <#if item.getSendStatus() ==0>发送成功</#if>
  51. <#if item.getSendStatus() ==1>发送失败</#if>
  52. <#if item.getSendStatus() ==2>未发送</#if>
  53. </td>
  54. <td>${item.getSendTime()}</td>
  55. <td>${item.getRetStatus()}</td>
  56. <td>${item.getRetDesc()}</td>
  57. <td>${item.getContent()}</td>
  58. </tr>
  59. </#for>
  60. </table>
  61. ${zhiqim_manager_paging(pageResult, "/smsSendLog.htm")}
  62. ${zhiqim_manager_content_end()}