DZKJ_CustomerAccount.aspx 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DZKJ_CustomerAccount.aspx.cs" Inherits="LYFZ.WeixinServers.DZKJ.DZKJ_CustomerAccount" %>
  2. <!--#include file="/WeiXinAPP/html/head.html" -->
  3. <!--#include file="/WeiXinAPP/html/leftMenu.html" -->
  4. <div class="content">
  5. <ul class="breadcrumb">
  6. <!--#include file="/WeiXinAPP/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: 320px; height: 24px; float: left;">
  14. <form id="tab2">
  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. </div>
  22. <button class="btn" onclick="document.location='DZKJ_CustomerAccount.aspx?IsEnabled=0'">已禁用</button>
  23. <button class="btn" onclick="document.location='DZKJ_CustomerAccount.aspx?PeriodOfValidity=0'">已过有效期</button>
  24. <button class="btn btn-primary" onclick="document.location='/DZKJ/DZKJ_AddCustomer.aspx'"><i class="icon-plus"></i>添加客户</button>
  25. <!-- <button class="btn">Import</button>
  26. <button class="btn">Export</button>-->
  27. <div class="btn-group">
  28. </div>
  29. </div>
  30. <div class="well">
  31. <table class="table">
  32. <thead>
  33. <tr>
  34. <th>状态</th>
  35. <th>企业名</th>
  36. <th>帐号</th>
  37. <th>联系人</th>
  38. <th>性别</th>
  39. <th>联系电话</th>
  40. <th>有效期</th>
  41. <th>模拟器个数</th>
  42. <th>注册时间</th>
  43. <th>最新登录时间</th>
  44. <th style="width: 52px;">操作</th>
  45. </tr>
  46. </thead>
  47. <tbody>
  48. <%=this.CustomerAccountListHtmlTb.ToString() %>
  49. </tbody>
  50. </table>
  51. </div>
  52. <%=PagingInfoHtml %>
  53. </div>
  54. <!--#include file="/WeiXinAPP/html/DeleteDialog.html" -->
  55. <!--#include file="/WeiXinAPP/html/footer.html" -->
  56. </div>
  57. </div>
  58. </div>
  59. <script type="text/javascript">
  60. $(document).ready(function () {
  61. /* $('#myModal').on('show.bs.modal', function (obj) {
  62. // 执行一些动作...
  63. $(this).attr("ta","123");
  64. })*/
  65. /* $('#myModal').on('hide.bs.modal', function (obj) {
  66. alert($(this).attr("rel"));
  67. })*/
  68. var Keyword = GetQueryString("Keyword");
  69. if (Keyword) {
  70. $("#Keyword").val(Keyword);
  71. }
  72. });
  73. function myModalDefine(objModal) {
  74. var relValue = objModal.attr("rel");
  75. document.location = "DZKJ_CustomerAccount.aspx?del=" + relValue;
  76. //alert(relValue);
  77. }
  78. </script>
  79. <!--#include file="/WeiXinAPP/html/bottom.html" -->