UserList.aspx 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UserList.aspx.cs" Inherits="LYFZ.WeixinServers.WeiXinAPP.UserList" %>
  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. <button class="btn btn-primary" onclick="document.location='AddUser.aspx'"><i class="icon-plus"></i>添加管理员</button>
  14. <!-- <button class="btn">Import</button>
  15. <button class="btn">Export</button>-->
  16. <div class="btn-group">
  17. </div>
  18. </div>
  19. <div class="alert alert-danger" role="alert">注意:分销商登陆帐号请不要在这里直接删除,请通过分销商列表删除</div>
  20. <div class="well">
  21. <table class="table">
  22. <thead>
  23. <tr>
  24. <th>#</th>
  25. <th>用户名</th>
  26. <th>帐号</th>
  27. <th>性别</th>
  28. <th>联系电话</th>
  29. <th>Email</th>
  30. <th>时间</th>
  31. <th>帐号类型</th>
  32. <th style="width: 52px;">操作</th>
  33. </tr>
  34. </thead>
  35. <tbody>
  36. <%=this.UserListHtmlTb.ToString() %>
  37. </tbody>
  38. </table>
  39. </div>
  40. <!-- <%=LYFZ.WXLibrary.PageTabList.GetPagingInfo_Web(10,500) %>-->
  41. <!--<div class="pagination">
  42. <ul>
  43. <li><a href="#">上一页</a></li>
  44. <li><a href="#">1</a></li>
  45. <li><a href="#">2</a></li>
  46. <li><a href="#">3</a></li>
  47. <li><a href="#">4</a></li>
  48. <li><a href="#">下一页</a></li>
  49. </ul>
  50. </div>-->
  51. </div>
  52. <!--#include file="html/DeleteDialog.html" -->
  53. <!--#include file="html/footer.html" -->
  54. </div>
  55. </div>
  56. </div>
  57. <script type="text/javascript">
  58. $(document).ready(function () {
  59. /* $('#myModal').on('show.bs.modal', function (obj) {
  60. // 执行一些动作...
  61. $(this).attr("ta","123");
  62. })*/
  63. /* $('#myModal').on('hide.bs.modal', function (obj) {
  64. alert($(this).attr("rel"));
  65. })*/
  66. });
  67. //打印出js 对象
  68. function writeObj(obj) {
  69. var description = "";
  70. for (var i in obj) {
  71. var property = obj[i];
  72. description += i + " = " + property + "\n";
  73. }
  74. alert(description);
  75. }
  76. function myModalDefine(objModal) {
  77. var relValue = objModal.attr("rel");
  78. document.location = "userList.aspx?del=" + relValue;
  79. //alert(relValue);
  80. }
  81. </script>
  82. <!--#include file="html/bottom.html" -->