% include ../layout/body_header.ejs %>
<%= ctx.menu.children[ctx.actionName].name %>
添加账号
账号 |
姓名 |
单位 |
职位 |
手机 |
电话 |
操作 |
<% if (accountList.length > 0) { %>
<% accountList.forEach(function (account) { %>
<%= account.account %> |
<%= account.name %> |
<%= account.company %> |
<%= account.role %> |
<%= account.mobile %> |
<%= account.telephone %> |
编辑
<%= account.enable === 1 ? '停用' : '启用'%>
|
<% }) %>
<% } %>
账号 |
姓名 |
单位 |
职位 |
权限 |
<% if (accountList.length > 0) { %>
<% accountList.forEach(function (account) { %>
<%= account.account %> |
<%= account.name %> |
<%= account.company %> |
<%= account.role %> |
编辑
|
<% }) %>
<% } %>