enterprise.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="renderer" content="webkit">
  7. <meta http-equiv="Content-Language" Content="zh-CN">
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <meta name="author" content="优软科技">
  10. <meta name="Keywords" content="优软,优软云,优企云服,SAAS,UAS,ERP,企业管理">
  11. <meta name="baidu-site-verification" content="tamBdrxeYx" />
  12. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  13. <meta http-equiv="X-UA-Compatible" content="IE=8">
  14. <meta http-equiv="Expires" content="0">
  15. <meta http-equiv="Pragma" content="no-cache">
  16. <meta http-equiv="Cache-control" content="no-cache, must-revalidate">
  17. <meta http-equiv="Cache" content="no-cache">
  18. <link href="static/img/icon/icon_32.png" rel="icon" type="image/x-icon" />
  19. <link rel="stylesheet" href="static/lib/bootstrap/css/bootstrap.min.css" />
  20. <link rel="stylesheet"
  21. href="static/lib/fontawesome/css/font-awesome.min.css" />
  22. <link rel="stylesheet" href="static/lib/bootstrap-tour/css/bootstrap-tour.min.css" />
  23. <link rel="stylesheet" href="static/css/common.css" />
  24. <link rel="stylesheet" href="static/css/enterprise.css" />
  25. <link rel="stylesheet" href="static/css/pagination.css">
  26. <title>企业列表</title>
  27. </head>
  28. <body>
  29. <style>
  30. #loadingDiv {
  31. position: absolute;
  32. left: 0;
  33. width: 100%;
  34. height: 100%;
  35. top: 0;
  36. /*background: #000000;*/
  37. opacity: 0.3;
  38. filter: alpha(opacity=80);
  39. z-index: 10000;
  40. display: none;
  41. }
  42. #loadingImg {
  43. position: absolute;
  44. cursor: wait;
  45. left: 45%;
  46. top: 50%;
  47. width: auto;
  48. height: auto;
  49. }
  50. </style>
  51. <div id="loadingDiv">
  52. <div id="loadingImg">
  53. <img src="../static/images/waiting.gif"/>
  54. </div>
  55. </div>
  56. <!-- nav start -->
  57. <nav id="nav" class="navbar navbar-inverse navbar-fixed-top">
  58. <div class="container">
  59. <div class="navbar-header">
  60. <a href="/" id="logo"><img src="static/img/logo.png" alt="" height="25px" /></a>
  61. </div>
  62. <div class="collapse navbar-collapse">
  63. <div class="nav navbar-nav navbar-left">
  64. <li><a href="/enterprise" class="active">企业列表</a></li>
  65. <li><a href="/logList" class="link-mall">B2B日志</a></li>
  66. <li><a href="/schedularList" class="link-mall">UAS轮询地址</a></li>
  67. <li><a href="/invite" class="link-mall">邀请注册记录</a></li>
  68. <li><a href="/notice" class="link-mall">发货提醒</a></li>
  69. </div>
  70. <ul class="nav navbar-nav navbar-right x-login">
  71. <li class="dropdown">
  72. <a href="#" class="dropdown-toggle"><i class="fa fa-user"></i> <span class="title"></span></a>
  73. </li>
  74. <li><a href="#" class="link-logout">退出</a></li>
  75. </ul>
  76. </div>
  77. </div>
  78. </nav>
  79. <!-- nav end -->
  80. <!-- section start -->
  81. <section>
  82. <div class="container">
  83. <div class="section-title">
  84. <h3>企业列表</h3>
  85. </div>
  86. </div>
  87. <div class="search">
  88. <div class="search-title" style="float: right">
  89. <input id="enterprise-total" style="width: 100px; border:0;outline:0;background: #F7F7F8" readonly>
  90. </div>
  91. <div class="input-group">
  92. <input type="text" id="keyword" class="form-control" placeholder="请输入名称、地址、UU号或营业执照搜索"><span class="input-group-addon" id="p_search">搜索</span>
  93. </div>
  94. </div>
  95. <table class="table table-striped table-hover">
  96. <thead id="enterprise-head">
  97. <th class="text-center" width="50">序号</th>
  98. <th class="text-center" width="80">UU</th>
  99. <th class="text-center" width="200">企业名称</th>
  100. <th class="text-center" width="300">企业地址</th>
  101. <th class="text-center" width="150">营业执照</th>
  102. <th class="text-center" width="120">注册时间</th>
  103. <th class="text-center" width="80">操作</th>
  104. </thead>
  105. <tbody id="enterprise-body">
  106. </tbody>
  107. <div id="page"></div>
  108. </table>
  109. <div id="m-page" class="m-style"></div>
  110. </section>
  111. <!-- section end -->
  112. </body>
  113. <script type="text/javascript" src="static/lib/jquery/jquery.min.js"></script>
  114. <script type="text/javascript" src="static/lib/bootstrap/js/bootstrap.min.js"></script>
  115. <script type="text/javascript" src="static/lib/bootstrap-tour/js/bootstrap-tour.min.js"></script>
  116. <script type="text/javascript" src="static/js/account/enterprise.js"></script>
  117. <script type="text/javascript" src="static/js/index/app.js"></script>
  118. <script type="text/javascript" src="static/js/common/common.js"></script>
  119. </html>