| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="renderer" content="webkit">
- <meta http-equiv="Content-Language" Content="zh-CN">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="author" content="优软科技">
- <meta name="Keywords" content="优软,优软云,优企云服,SAAS,UAS,ERP,企业管理">
- <meta name="baidu-site-verification" content="tamBdrxeYx" />
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=8">
- <meta http-equiv="Expires" content="0">
- <meta http-equiv="Pragma" content="no-cache">
- <meta http-equiv="Cache-control" content="no-cache, must-revalidate">
- <meta http-equiv="Cache" content="no-cache">
- <link href="static/img/icon/icon_32.png" rel="icon" type="image/x-icon" />
- <link rel="stylesheet" href="static/lib/bootstrap/css/bootstrap.min.css" />
- <link rel="stylesheet"
- href="static/lib/fontawesome/css/font-awesome.min.css" />
- <link rel="stylesheet" href="static/lib/bootstrap-tour/css/bootstrap-tour.min.css" />
- <link rel="stylesheet" href="static/css/common.css" />
- <link rel="stylesheet" href="static/css/enterprise.css" />
- <link rel="stylesheet" href="static/css/pagination.css">
- <title>企业列表</title>
- </head>
- <body>
- <style>
- #loadingDiv {
- position: absolute;
- left: 0;
- width: 100%;
- height: 100%;
- top: 0;
- /*background: #000000;*/
- opacity: 0.3;
- filter: alpha(opacity=80);
- z-index: 10000;
- display: none;
- }
- #loadingImg {
- position: absolute;
- cursor: wait;
- left: 45%;
- top: 50%;
- width: auto;
- height: auto;
- }
- </style>
- <div id="loadingDiv">
- <div id="loadingImg">
- <img src="../static/images/waiting.gif"/>
- </div>
- </div>
- <!-- nav start -->
- <nav id="nav" class="navbar navbar-inverse navbar-fixed-top">
- <div class="container">
- <div class="navbar-header">
- <a href="/" id="logo"><img src="static/img/logo.png" alt="" height="25px" /></a>
- </div>
- <div class="collapse navbar-collapse">
- <div class="nav navbar-nav navbar-left">
- <li><a href="/enterprise" class="active">企业列表</a></li>
- <li><a href="/logList" class="link-mall">B2B日志</a></li>
- <li><a href="/schedularList" class="link-mall">UAS轮询地址</a></li>
- <li><a href="/invite" class="link-mall">邀请注册记录</a></li>
- <li><a href="/notice" class="link-mall">发货提醒</a></li>
- </div>
- <ul class="nav navbar-nav navbar-right x-login">
- <li class="dropdown">
- <a href="#" class="dropdown-toggle"><i class="fa fa-user"></i> <span class="title"></span></a>
- </li>
- <li><a href="#" class="link-logout">退出</a></li>
- </ul>
- </div>
- </div>
- </nav>
- <!-- nav end -->
- <!-- section start -->
- <section>
- <div class="container">
- <div class="section-title">
- <h3>企业列表</h3>
- </div>
- </div>
- <div class="search">
- <div class="search-title" style="float: right">
- <input id="enterprise-total" style="width: 100px; border:0;outline:0;background: #F7F7F8" readonly>
- </div>
- <div class="input-group">
- <input type="text" id="keyword" class="form-control" placeholder="请输入名称、地址、UU号或营业执照搜索"><span class="input-group-addon" id="p_search">搜索</span>
- </div>
- </div>
- <table class="table table-striped table-hover">
- <thead id="enterprise-head">
- <th class="text-center" width="50">序号</th>
- <th class="text-center" width="80">UU</th>
- <th class="text-center" width="200">企业名称</th>
- <th class="text-center" width="300">企业地址</th>
- <th class="text-center" width="150">营业执照</th>
- <th class="text-center" width="120">注册时间</th>
- <th class="text-center" width="80">操作</th>
- </thead>
- <tbody id="enterprise-body">
- </tbody>
- <div id="page"></div>
- </table>
- <div id="m-page" class="m-style"></div>
- </section>
- <!-- section end -->
- </body>
- <script type="text/javascript" src="static/lib/jquery/jquery.min.js"></script>
- <script type="text/javascript" src="static/lib/bootstrap/js/bootstrap.min.js"></script>
- <script type="text/javascript" src="static/lib/bootstrap-tour/js/bootstrap-tour.min.js"></script>
- <script type="text/javascript" src="static/js/account/enterprise.js"></script>
- <script type="text/javascript" src="static/js/index/app.js"></script>
- <script type="text/javascript" src="static/js/common/common.js"></script>
- </html>
|