#setting number_format="0">
<#function getFieldList fieldList>
<#assign rtn>
<#assign index=0>
<#list fieldList as field>
<#if field.isHidden == 0 && field.controlType!= 2
&& field.controlType != 9 && field.controlType != 10
&& field.controlType != 12 && field.controlType != 20
&& field.controlType != 21 && field.controlType != 22>
<#if index % 2 == 0>
#if>
${field.fieldDesc}: |
<@input field=field/>
|
<#if index % 2 == 0 && !field_has_next>
|
|
#if>
<#if index % 2 == 1 || !field_has_next>
#if>
<#assign index=index+1>
#if>
#list>
<#--保持一行:多行文本框(2)、文件上传(9)、富文本框editor(10)、Office控件(12)、流程引用(20)、WebSign签章控件(21)、图片展示控件(22)-->
<#list fieldList as field>
<#if field.controlType == 2 || field.controlType == 9
|| field.controlType == 10 || field.controlType == 12
|| field.controlType == 20 || field.controlType == 21
|| field.controlType == 22>
${field.fieldDesc} |
<@input field=field/>
|
#if>
#list>
#assign>
<#return rtn>
#function>
<#function setTeamField teams>
<#assign rtn>
<#list teams as team>
${team.teamName} |
${getFieldList(team.teamFields)}
#list>
#assign>
<#return rtn>
#function>