| 12345678910111213141516171819202122 |
- <form name="theForm" action="/designerAppoint.htm" method="post" onSubmit="return validateForm(this);">
- <table class="z-table z-bordered z-pd6">
- <tr class="z-h40" bgcolor="#f3fdfc">
- <td width="35%">原设计师:</td>
- <td width="*"></td>
- </tr>
- <tr class="z-h40" bgcolor="#f3fdfc">
- <td>指定新设计师:</td>
- <td>
- <select name="designer" class="z-select ${zmr_color_class} z-w200">
- <#for item : operatorList>
- <option value="${item.getOperatorCode()}">${item.getOperatorCode()}</option>
- </#for>
- </select> <font color=red> *</font>
- </td>
- </tr>
- <table class="z-table fi-bd fi-bd-t-none z-pd6 z-bg-white">
- <tr class="z-h40">
- <td colspan="2" align="center"><button type="submit" class="z-button ${zmr_color_class} z-large z-w100">提交</button></td>
- </tr>
- </table>
- </tabale>
|