12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UserList.aspx.cs" Inherits="LYFZ.WeixinServers.WeiXinAPP.UserList" %>
- <!--#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">
- <button class="btn btn-primary" onclick="document.location='AddUser.aspx'"><i class="icon-plus"></i>添加管理员</button>
- <!-- <button class="btn">Import</button>
- <button class="btn">Export</button>-->
- <div class="btn-group">
- </div>
- </div>
- <div class="alert alert-danger" role="alert">注意:分销商登陆帐号请不要在这里直接删除,请通过分销商列表删除</div>
- <div class="well">
- <table class="table">
- <thead>
- <tr>
- <th>#</th>
- <th>用户名</th>
- <th>帐号</th>
- <th>性别</th>
- <th>联系电话</th>
- <th>Email</th>
- <th>时间</th>
- <th>帐号类型</th>
- <th style="width: 52px;">操作</th>
- </tr>
- </thead>
- <tbody>
- <%=this.UserListHtmlTb.ToString() %>
- </tbody>
- </table>
- </div>
- <!-- <%=LYFZ.WXLibrary.PageTabList.GetPagingInfo_Web(10,500) %>-->
- <!--<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 () {
- /* $('#myModal').on('show.bs.modal', function (obj) {
- // 执行一些动作...
- $(this).attr("ta","123");
- })*/
- /* $('#myModal').on('hide.bs.modal', function (obj) {
-
- alert($(this).attr("rel"));
- })*/
- });
- //打印出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 = "userList.aspx?del=" + relValue;
- //alert(relValue);
- }
- </script>
- <!--#include file="html/bottom.html" -->
|