CustomerList.aspx 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CustomerList.aspx.cs" Inherits="LYFZ.WeixinServers.WeiXinAPP.CustomerList" %>
  2. <!--#include file="html/head.html" -->
  3. <!--#include file="html/leftMenu.html" -->
  4. <link rel="stylesheet" href="/WeiXinAPP/lib/font-awesome/css/font-awesome.css">
  5. <div class="content">
  6. <ul class="breadcrumb">
  7. <!--#include file="html/indexBread.html" -->
  8. <li class="active">客户端连列表</li>
  9. </ul>
  10. <div class="container-fluid">
  11. <div class="row-fluid">
  12. <div style="width:100%; min-height:700px;">
  13. <div class="btn-toolbar">
  14. <!-- <button class="btn btn-primary"><i class="icon-plus"></i> New User</button>-->
  15. <div style="width:100%;height:24px;">
  16. <form id="tab2" style="width:320px;height:100%; float:left;">
  17. <label style="width:50px;height:100%; padding-top:5px; float:left;">关键字</label>
  18. <div style="width:200px;height:100%; float:left; margin-right:5px;">
  19. <input id="Keyword" name="Keyword" type="text" class="span12" />
  20. </div>
  21. <button class="btn">查询</button>
  22. </form>
  23. <button class="btn" onclick="deleteWuxiaoData()" >清除无效数据</button>
  24. </div>
  25. <div class="btn-group">
  26. </div>
  27. </div>
  28. <div class="well">
  29. <table class="table">
  30. <thead>
  31. <tr>
  32. <th>#</th>
  33. <th style="width:160px;">客户名称</th>
  34. <th>标识</th>
  35. <th>APP接口URL</th>
  36. <th>微信号</th>
  37. <th>调用频率</th>
  38. <th>刷新时间</th>
  39. <th>创建时间</th>
  40. <th>状态</th>
  41. <th style="width:62px;"></th>
  42. </tr>
  43. </thead>
  44. <tbody>
  45. <%=this.CustomerListHtmlTb.ToString() %>
  46. </tbody>
  47. </table>
  48. </div>
  49. <%=this.PagingInfoHtml%>
  50. <!--<div class="pagination">
  51. <ul>
  52. <li><a href="#">上一页</a></li>
  53. <li><a href="#">1</a></li>
  54. <li><a href="#">2</a></li>
  55. <li><a href="#">3</a></li>
  56. <li><a href="#">4</a></li>
  57. <li><a href="#">下一页</a></li>
  58. </ul>
  59. </div>-->
  60. </div>
  61. <!--#include file="html/DeleteDialog.html" -->
  62. <!--#include file="html/footer.html" -->
  63. </div>
  64. </div>
  65. </div>
  66. <script type="text/javascript">
  67. $(document).ready(function () {
  68. var Keyword = GetQueryString("Keyword");
  69. if (Keyword)
  70. {
  71. $("#Keyword").val(Keyword);
  72. }
  73. });
  74. function myModalDefine(objModal)
  75. {
  76. var relValue = objModal.attr("rel");
  77. document.location = "CustomerList.aspx?del=" + relValue;
  78. //alert(relValue);
  79. }
  80. function deleteWuxiaoData()
  81. {
  82. document.location = "CustomerList.aspx?delwx=1";
  83. }
  84. </script>
  85. <!--#include file="html/bottom.html" -->