1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CustomerList.aspx.cs" Inherits="LYFZ.WeixinServers.WeiXinAPP.CustomerList" %>
- <!--#include file="html/head.html" -->
- <!--#include file="html/leftMenu.html" -->
- <link rel="stylesheet" href="/WeiXinAPP/lib/font-awesome/css/font-awesome.css">
- <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">
- <!-- <button class="btn btn-primary"><i class="icon-plus"></i> New User</button>-->
- <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="deleteWuxiaoData()" >清除无效数据</button>
- </div>
-
- <div class="btn-group">
- </div>
- </div>
- <div class="well">
- <table class="table">
- <thead>
- <tr>
- <th>#</th>
- <th style="width:160px;">客户名称</th>
- <th>标识</th>
- <th>APP接口URL</th>
- <th>微信号</th>
- <th>调用频率</th>
- <th>刷新时间</th>
- <th>创建时间</th>
- <th>状态</th>
- <th style="width:62px;"></th>
- </tr>
- </thead>
- <tbody>
- <%=this.CustomerListHtmlTb.ToString() %>
- </tbody>
- </table>
- </div>
- <%=this.PagingInfoHtml%>
- <!--<div class="pagination">
- <ul>
- <li><a href="#">上一页</a></li>
- <li><a href="#">1</a></li>
- <li><a href="#">2</a></li>
- <li><a href="#">3</a></li>
- <li><a href="#">4</a></li>
- <li><a href="#">下一页</a></li>
- </ul>
- </div>-->
- </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 myModalDefine(objModal)
- {
- var relValue = objModal.attr("rel");
- document.location = "CustomerList.aspx?del=" + relValue;
- //alert(relValue);
- }
- function deleteWuxiaoData()
- {
- document.location = "CustomerList.aspx?delwx=1";
- }
- </script>
- <!--#include file="html/bottom.html" -->
|