1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title></title>
- </head>
- <body>
- <div class="managerContainer usrContain">
- <h2>用户管理</h2>
- <div class="main-body">
- <div class="filterBox">
- <span class="filterItem">
- <span>姓名:</span>
- <span class="">
- <input class="moduleItemInp" type="text" placeholder="请输入姓名">
- </span>
- </span>
- <span class="filterItem typeFilter">
- <span>科室:</span>
- <span class="selectModuleType ellipsis">全部</span>
- <ul class="moduleTypeList filterDropList"></ul>
- </span>
- <span class="filterItem">
- <span>角色:</span>
- <span class="selectReject ellipsis">全部</span>
- <ul class="rejectList filterDropList"></ul>
- </span>
- <span class="filter">查询</span>
- <span class="filterclear abnormalClear">重置</span>
- </div>
- <table>
- <thead>
- <th class="moduleName">序号</th>
- <th class="moduleType" width="80">姓名</th>
- <th class="moduleItemName">科室</th>
- <th class="moduleTipsMsg">角色</th>
- <th class="moduleUsed">状态</th>
- <th class="moduleOpera" style="width: 150px;">操作</th>
- </thead>
- <tbody>
-
- </tbody>
- </table>
- <div class="pagination"></div>
- </div>
-
-
-
- </div>
- </body>
- </html>
|