chargeOrderAudit.zml 853 B

12345678910111213141516171819202122
  1. <form name="theForm" action="/designerAppoint.htm" method="post" onSubmit="return validateForm(this);">
  2. <table class="z-table z-bordered z-pd6">
  3. <tr class="z-h40" bgcolor="#f3fdfc">
  4. <td width="35%">原设计师:</td>
  5. <td width="*"></td>
  6. </tr>
  7. <tr class="z-h40" bgcolor="#f3fdfc">
  8. <td>指定新设计师:</td>
  9. <td>
  10. <select name="designer" class="z-select ${zmr_color_class} z-w200">
  11. <#for item : operatorList>
  12. <option value="${item.getOperatorCode()}">${item.getOperatorCode()}</option>
  13. </#for>
  14. </select> <font color=red>&nbsp;*</font>
  15. </td>
  16. </tr>
  17. <table class="z-table fi-bd fi-bd-t-none z-pd6 z-bg-white">
  18. <tr class="z-h40">
  19. <td colspan="2" align="center"><button type="submit" class="z-button ${zmr_color_class} z-large z-w100">提交</button></td>
  20. </tr>
  21. </table>
  22. </tabale>