1234567891011121314151617181920212223242526272829303132333435 |
- <%@ page contentType="text/html;charset=UTF-8"%>
- <%@ include file="/WEB-INF/include/taglibs.jsp"%>
- <form id="advSearchForm" method="post">
- <table width="100%">
- <tr>
- <td class="title">商品:</td>
- <td>
- <input name="itemName" condition='"operator":"like"' />
- </td>
- <td class="title">货主:</td>
- <td>
- <input name="customerName" condition='"operator":"like"' />
- </td>
- <td class="title">货主关系人:</td>
- <td>
- <input name="relationedCustomerName" condition='"operator":"like"' />
- </td>
- </tr>
- <tr>
- <td class="title">产品形态:</td>
- <td>
- <select name="normalFlag" class="easyui-combobox" style="width:155px" data-options="multiple:true,editable:false,panelHeight:'auto'" condition='"operator":"in"'>${normalFlagMaintainList}</select>
- </td>
- <td class="title">产品代码:</td>
- <td>
- <input name="itemCode" condition='"operator":"like"' />
- </td>
- </tr>
- <tr>
- <td colspan="6" align="right">
- <a id="btnQuery" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-search'">查询</a>
- </td>
- </tr>
- </table>
- </form>
|