16 lines
545 B
Plaintext
16 lines
545 B
Plaintext
|
|
<div class="formTitle"><span class="icon icon_menu"></span>部门信息</div>
|
||
|
|
<#if (userInfo.orgList?size)==1>
|
||
|
|
<div style="margin: 5px">${userInfo.defaultOrgInfo.name}</div>
|
||
|
|
<#else>
|
||
|
|
<div class="dept_list" style="margin: 5px">
|
||
|
|
<#list userInfo.orgList as org>
|
||
|
|
<button orgId="${org.id}" class="button
|
||
|
|
<#if org.id==userInfo.defaultOrgInfo.id>
|
||
|
|
button_submit" title="当前部门">
|
||
|
|
<#else>
|
||
|
|
btnOrgs" title="设置为当前部门">
|
||
|
|
</#if>
|
||
|
|
${org.name}</button>
|
||
|
|
</#list>
|
||
|
|
</div>
|
||
|
|
</#if>
|