subscribeOrgTempQuotaAdd.zml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <script>
  2. Z.onload(function(){
  3. })
  4. </script>
  5. ${request.getValidateScript()}
  6. ${zhiqim_manager_history("/subscribeOrgTempQuota.htm")}
  7. ${zhiqim_manager_breadcrumb_parent("/subscribeOrgTempQuota.htm", "临时额度配置", "增加临时额度配置")}
  8. ${zhiqim_manager_content()}
  9. ${zhiqim_manager_title("新增临时额度配置")}
  10. <form name="theForm" action="/subscribeOrgTempQuotaInsert.htm" method="post" data-role="z-call-frame">
  11. <table class="z-table z-bordered z-pd6 z-bg-white">
  12. <tr>
  13. <td width="200">
  14. 组织:
  15. </td>
  16. <td>
  17. <select id="orgId" name="orgId" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
  18. <#for item : orgList>
  19. <option value="${item.getOrgId()}">${item.getOrgName()}</option>
  20. </#for>
  21. </select>
  22. </td>
  23. </tr>
  24. <tr>
  25. <td>
  26. 临时额度:
  27. </td>
  28. <td>
  29. <input name="tempQuota" maxlength="6" value="" class="z-input z-w200 z-ime-disabled" data-options="type:Integer;paste:true;" placeholder="">
  30. </td>
  31. </tr>
  32. </table>
  33. ${zhiqim_manager_submit()}
  34. </form>
  35. ${zhiqim_manager_content_end()}