|
<@ZKUI.Combo width="148" onChange="superAuthChange" readonly="true" empty="false" hideLabel="true" name="superAuth" value="${(tempAccPerson.superAuth)!0}">
@ZKUI.Combo>
|
|
<@ZKUI.Combo width="148" empty="false" readonly="true" hideLabel="true" name="privilege" value="${(tempAccPerson.privilege)!0}">
@ZKUI.Combo>
|
|
<#if (tempAccPerson.delayPassage)?exists && (tempAccPerson.delayPassage)?string == "true">
<@ZKUI.Input hideLabel="true" type="checkbox" id="delayPassage" name="delayPassage" value="true" checked="checked"/>
<#else>
<@ZKUI.Input hideLabel="true" type="checkbox" id="delayPassage" name="delayPassage" value="true"/>
#if>
|
|
<#if (tempAccPerson.disabled)?exists && (tempAccPerson.disabled)?string == "true">
<@ZKUI.Input hideLabel="true" type="checkbox" id="idDisabled" name="disabled" value="true" checked="checked"/>
<#else>
<@ZKUI.Input hideLabel="true" type="checkbox" id="idDisabled" name="disabled" value="true"/>
#if>
|
|
<#if (tempAccPerson.isSetValidTime)?exists && (tempAccPerson.isSetValidTime)?string == "true">
<@ZKUI.Input hideLabel="true" type="checkbox" id="isSetValidTime" name="isSetValidTime" value="true" checked="checked"/>
<#else>
<@ZKUI.Input hideLabel="true" type="checkbox" id="isSetValidTime" name="isSetValidTime" value="true"/>
#if>
|
| *
|
<@ZKUI.Input id="validTimeStart" hideLabel="true" type="datetime" readonly="true" today="true" name="startTime" value="${((tempAccPerson.startTime)?string('yyyy-MM-dd HH:mm:ss'))!}"/>
|
| * |
<@ZKUI.Input id="validTimeEnd" hideLabel="true" type="datetime" readonly="true" today="true" name="endTime" todayRange="end" value="${((tempAccPerson.endTime)?string('yyyy-MM-dd HH:mm:ss'))!}"/>
|