CustomerCacheList.aspx 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CustomerCacheList.aspx.cs" Inherits="LYFZ.WeixinServers.WeiXinAPP.CustomerCacheList" %>
  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="RefreshLoad()" >刷新缓存</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>
  51. <!--#include file="html/DeleteDialog.html" -->
  52. <!--#include file="html/footer.html" -->
  53. </div>
  54. </div>
  55. </div>
  56. <script type="text/javascript">
  57. $(document).ready(function () {
  58. var Keyword = GetQueryString("Keyword");
  59. if (Keyword)
  60. {
  61. $("#Keyword").val(Keyword);
  62. }
  63. });
  64. function RefreshLoad() {
  65. document.location = "CustomerCacheList.aspx?type=refresh";
  66. }
  67. </script>
  68. <!--#include file="html/bottom.html" -->