| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- ${Styles.htmlOverflowHidden()}
- <script>
- Z.onload(function()
- {
- Z(document.forms[0].operatorKey).focusEnd();
- });
- function doSelector()
- {
-
- var operatorCode = "";
- <#if multiSelect>
- operatorCode = Z.FM.getCheckeds("operatorCode");
- <#else>
- operatorCode = Z.FM.getChecked("operatorCode");
- </#if>
- Z.FM.getChecked("operatorCode");
- parent.doSelectorCallback(operatorCode);
- parent.Z.Dialog.close(location.hash);
- }
- </script>
- <#-- 查询 -->
- <div class="z-fixed z-t0 z-l0 z-w100p z-pd10 z-bg-gray">
- <form method="post">
- <input name="operatorKey" class="z-float-left z-input z-w300 zi-h35 zi-bd-r-none" placeholder="设计师编码或名称" value="${operatorKey}" maxlength="20">
- <button type="submit" class="z-float-left z-button z-w70 z-h35 zi-bd-rd0 ${zmr_color_class}"><i class="z-font z-query"></i></button>
- </form>
- </div>
- <#-- 列表 -->
- <div class="z-w100p z-pd10 z-overflow-auto" style="margin-top:55px;height:306px;">
- <table class="z-table z-bordered z-pd5 z-text-center">
- <tr class="z-h40 z-bg-gray">
- <td width="60"><#if multiSelect><input type="checkbox" onclick="Z.E.stop();Z.FM.doSelectCheckBox('operatorCode', this.checked ? 1 : 2);" data-role="z-checkbox" data-class="z-blue"> <span class="z-pointer" onclick="Z(this).parent().find('zcover>i.z-checkbox').click()">全选</span><#else>选择</#if></td>
- <td width="90">设计师头像</td>
- <td width="110">设计师编码</td>
- <td width="*">设计师姓名</td>
- </tr>
- ${zhiqim_manager_tr_no_record(list, 4, "没有可选择的操作员")}
- <#for item : list>
- <tr class="z-pointer" ${zhiqim_manager_tr_onmouse()} <#if multiSelect>${zhiqim_manager_tr_click_checkbox()}<#else>${zhiqim_manager_tr_click_radio()}</#if> >
- <td><input name="operatorCode" type="<#if multiSelect>checkbox<#else>radio</#if>" data-role="<#if multiSelect>z-checkbox<#else>z-radio</#if>" data-class="z-blue" value="${item.getOperatorCode()}"></td>
- <td><img class="z-w50 z-h50 z-bd-rd50p" src="${sessionUser.getAvatarUrl(item.getOperatorAvatar(), 50)}"></td>
- <td>${item.getOperatorCode()}</td>
- <td>${item.getOperatorName()}</td>
- </tr>
- </#for>
- </tale>
- </div>
- <#-- 操作 -->
- <div class="z-fixed z-b0 z-l0 z-w100p z-h60 z-pd10 z-bg-gray z-text-center">
- <button class="z-button z-large z-w150 ${zmr_color_class}" onclick="doSelector();">确定</button>
- <button class="z-button z-large z-w70 z-mg-l10" onclick="parent.Z.Dialog.close(location.hash);">取消</button>
- </div>
|