snInventoryAdvSearch.jsp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <%@ page contentType="text/html;charset=UTF-8"%>
  2. <%@ include file="/WEB-INF/include/taglibs.jsp"%>
  3. <form id="advSearchForm" method="post">
  4. <table width="100%">
  5. <tr>
  6. <td class="title">商品:</td>
  7. <td>
  8. <input name="itemName" condition='"operator":"like"' />
  9. </td>
  10. <td class="title">货主:</td>
  11. <td>
  12. <input name="customerName" condition='"operator":"like"' />
  13. </td>
  14. <td class="title">货主关系人:</td>
  15. <td>
  16. <input name="relationedCustomerName" condition='"operator":"like"' />
  17. </td>
  18. </tr>
  19. <tr>
  20. <td class="title">产品形态:</td>
  21. <td>
  22. <select name="normalFlag" class="easyui-combobox" style="width:155px" data-options="multiple:true,editable:false,panelHeight:'auto'" condition='"operator":"in"'>${normalFlagMaintainList}</select>
  23. </td>
  24. <td class="title">产品代码:</td>
  25. <td>
  26. <input name="itemCode" condition='"operator":"like"' />
  27. </td>
  28. </tr>
  29. <tr>
  30. <td colspan="6" align="right">
  31. <a id="btnQuery" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-search'">查询</a>
  32. </td>
  33. </tr>
  34. </table>
  35. </form>