1234567891011121314151617 |
- <%@ page contentType="text/html;charset=UTF-8"%>
- <%@ include file="/WEB-INF/include/taglibs.jsp"%>
- <form id="modifyPickModeForm" method="post">
- <table style="width:100%">
- <tr>
- <td class="title"><div class="star">*</div>拣货模式:</td>
- <td>
- <select id="pickType" name="pickType" style="width:155px" class="easyui-combobox" data-options="required:true,editable:false,panelHeight:'auto'">${pickModeList}</select>
- </td>
- </tr>
- <tr>
- <td colspan="2" align="right">
- <a href="#" icon="icon-save" id="modifyPickModeBtn" class="easyui-linkbutton">保存</a>
- </td>
- </tr>
- </table>
- </form>
|