123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AuthorizationInfoLis.aspx.cs" Inherits="LYFZ.WeixinServers.WeiXinAPP.AuthorizationInfoLis" %>
- <!--#include file="html/head.html" -->
- <!--#include file="html/leftMenu.html" -->
-
- <div class="content">
-
-
- <ul class="breadcrumb">
- <!--#include file="html/indexBread.html" -->
- <li class="active">授权公众号列表</li>
- </ul>
- <div class="container-fluid">
- <div class="row-fluid">
- <div style="width:100%; min-height:700px;">
-
- <div class="btn-toolbar">
- <div style="width:100%;height:24px;">
- <form id="tab2" style="width:320px;height:100%; float:left;">
- <label style="width:50px;height:100%; padding-top:5px; float:left;">关键字</label>
- <div style="width:200px;height:100%; float:left; margin-right:5px;">
- <input id="Keyword" name="Keyword" type="text" class="span12" />
- </div>
-
- <button class="btn">查询</button>
- </form>
- <button class="btn" onclick="RefreshLoad()" >刷新缓存</button>
- </div>
- <div class="btn-group">
- </div>
- </div>
- <div class="well">
- <table class="table">
- <thead>
- <tr>
- <th>编号ID</th>
- <th style="width:100px;">企业(影楼)名称/加密锁域名</th>
- <th style="width:100px;">授权公众号ID</th>
- <th>授权状态</th>
- <th style="width:100px;">授权信息</th>
- <th>首次授权时间</th>
- <th>刷新授权时间</th>
- <th style="width:52px;">操作</th>
- </tr>
- </thead>
- <tbody>
- <%=this.Authorization_infoListHtmlTb.ToString() %>
- </tbody>
- </table>
- </div>
- <%=this.PagingInfoHtml%>
-
- </div>
- <!--#include file="html/DeleteDialog.html" -->
- <!--#include file="html/footer.html" -->
-
- </div>
- </div>
- </div>
- <script type="text/javascript">
- $(document).ready(function () {
- var Keyword = GetQueryString("Keyword");
- if (Keyword) {
- $("#Keyword").val(Keyword);
- }
- });
- function RefreshLoad() {
- document.location = "AuthorizationInfoLis.aspx?type=refresh";
- }
- //打印出js 对象
- function writeObj(obj) {
- var description = "";
- for (var i in obj) {
- var property = obj[i];
- description += i + " = " + property + "\n";
- }
- alert(description);
- }
- function myModalDefine(objModal)
- {
- var relValue = objModal.attr("rel");
- document.location = "AuthorizationInfoLis.aspx?del=" + relValue;
- //alert(relValue);
- }
- </script>
- <!--#include file="html/bottom.html" -->
|