AuthorizationInfoLis.aspx 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AuthorizationInfoLis.aspx.cs" Inherits="LYFZ.WeixinServers.WeiXinAPP.AuthorizationInfoLis" %>
  2. <!--#include file="html/head.html" -->
  3. <!--#include file="html/leftMenu.html" -->
  4. <div class="content">
  5. <ul class="breadcrumb">
  6. <!--#include file="html/indexBread.html" -->
  7. <li class="active">授权公众号列表</li>
  8. </ul>
  9. <div class="container-fluid">
  10. <div class="row-fluid">
  11. <div style="width:100%; min-height:700px;">
  12. <div class="btn-toolbar">
  13. <div style="width:100%;height:24px;">
  14. <form id="tab2" style="width:320px;height:100%; float:left;">
  15. <label style="width:50px;height:100%; padding-top:5px; float:left;">关键字</label>
  16. <div style="width:200px;height:100%; float:left; margin-right:5px;">
  17. <input id="Keyword" name="Keyword" type="text" class="span12" />
  18. </div>
  19. <button class="btn">查询</button>
  20. </form>
  21. <button class="btn" onclick="RefreshLoad()" >刷新缓存</button>
  22. </div>
  23. <div class="btn-group">
  24. </div>
  25. </div>
  26. <div class="well">
  27. <table class="table">
  28. <thead>
  29. <tr>
  30. <th>编号ID</th>
  31. <th style="width:100px;">企业(影楼)名称/加密锁域名</th>
  32. <th style="width:100px;">授权公众号ID</th>
  33. <th>授权状态</th>
  34. <th style="width:100px;">授权信息</th>
  35. <th>首次授权时间</th>
  36. <th>刷新授权时间</th>
  37. <th style="width:52px;">操作</th>
  38. </tr>
  39. </thead>&nbsp;
  40. <tbody>
  41. <%=this.Authorization_infoListHtmlTb.ToString() %>
  42. </tbody>
  43. </table>
  44. </div>
  45. <%=this.PagingInfoHtml%>
  46. </div>
  47. <!--#include file="html/DeleteDialog.html" -->
  48. <!--#include file="html/footer.html" -->
  49. </div>
  50. </div>
  51. </div>
  52. <script type="text/javascript">
  53. $(document).ready(function () {
  54. var Keyword = GetQueryString("Keyword");
  55. if (Keyword) {
  56. $("#Keyword").val(Keyword);
  57. }
  58. });
  59. function RefreshLoad() {
  60. document.location = "AuthorizationInfoLis.aspx?type=refresh";
  61. }
  62. //打印出js 对象
  63. function writeObj(obj) {
  64. var description = "";
  65. for (var i in obj) {
  66. var property = obj[i];
  67. description += i + " = " + property + "\n";
  68. }
  69. alert(description);
  70. }
  71. function myModalDefine(objModal)
  72. {
  73. var relValue = objModal.attr("rel");
  74. document.location = "AuthorizationInfoLis.aspx?del=" + relValue;
  75. //alert(relValue);
  76. }
  77. </script>
  78. <!--#include file="html/bottom.html" -->