| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | 
							- <% include ./sub_menu.ejs %>
 
- <div class="panel-content">
 
-     <div class="panel-title">
 
-         <div class="title-main">
 
-             <h2>账号管理
 
-                 <% if (projectData.max_user !== accountData.length) { %>
 
-                 <a href="#ver" data-toggle="modal" data-target="#add-user" class="btn btn-primary btn-sm pull-right">添加账号</a>
 
-                 <% } else { %>
 
-                 <a href="#add-unpass" data-toggle="modal" data-target="#add-unpass" class="btn btn-primary btn-sm pull-right">添加账号(受限)</a>
 
-                 <% } %>
 
-             </h2>
 
-         </div>
 
-     </div>
 
-     <div class="content-wrap">
 
-         <div class="c-body">
 
-             <nav class="nav nav-tabs mb-3" role="tablist">
 
-                 <a class="nav-item nav-link" href="/setting/user">账号列表</a>
 
-                 <a class="nav-item nav-link active" href="/setting/user/permission/set">账号权限</a>
 
-             </nav>
 
-             <div class="tab-content">
 
-                 <div id="user-purview" class="tab-pane active">
 
-                     <table class="table table-hover table-bordered table-sm">
 
-                         <thead>
 
-                         <tr>
 
-                             <th>账号</th>
 
-                             <th>姓名</th>
 
-                             <th>单位</th>
 
-                             <th>角色/职位</th>
 
-                             <th>协作办公</th>
 
-                             <th>权限</th>
 
-                         </thead>
 
-                         <tbody>
 
-                         <% for (const account of accountData) { %>
 
-                         <tr>
 
-                             <td><%= account.account %><% if (account.is_admin === 1) { %> <span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="管理员"><i class="fa fa-user-circle-o"></i></span><% } %></td>
 
-                             <td><%= account.name %></td>
 
-                             <td><%= account.company %></td>
 
-                             <td><%= account.role %></td>
 
-                             <td><% if (account.cooperation === 1) { %>启用<% } %></td>
 
-                             <td><% if (account.permission !== '' && account.permission !== null && JSON.parse(account.permission).tender !== undefined) { %>
 
-                                 <% const tenderPermission = JSON.parse(account.permission).tender; %>
 
-                                     <% for (const tc in permission.tender.children) { %>
 
-                                         <% if (tenderPermission.indexOf(permission.tender.children[tc].value.toString()) !== -1) { %>
 
-                                             <%= permission.tender.children[tc].title %>
 
-                                         <% } %>
 
-                                     <% } %>
 
-                                 <% } %>
 
-                                     <a href="#edit-user2" data-account="<%= JSON.stringify(account) %>" data-toggle="modal" data-target="#edit-user2" class="btn btn-sm btn-outline-primary pull-right">编辑</a></td>
 
-                         </tr>
 
-                         <% } %>
 
-                         </tbody>
 
-                     </table>
 
-                 </div>
 
-             </div>
 
-         </div>
 
-     </div>
 
- </div>
 
- <script src="/public/js/setting.js"></script>
 
 
  |