|
@@ -21,12 +21,20 @@
|
|
|
<input name="companyName" onclick="selectTree('company')" id="input_companyTreeName" type="text" placeholder="选择商户"
|
|
|
class="form-control required" readonly="readonly" required>
|
|
|
</li>
|
|
|
+
|
|
|
<li>
|
|
|
<p>所属类型:</p>
|
|
|
<input name="typeId" type="hidden" id="input_typeId">
|
|
|
<input name="typeName" onclick="selectTree('type')" id="input_typeTreeName" type="text" placeholder="选择商品分类"
|
|
|
class="form-control required" readonly="readonly" required>
|
|
|
</li>
|
|
|
+ <li>
|
|
|
+ 商品状态:
|
|
|
+ <select name="putawayFlag" th:with="type=${@dict.getType('goods_putaway')}">
|
|
|
+ <option value="">所有</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
+ </select>
|
|
|
+ </li>
|
|
|
<li>
|
|
|
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
|
|
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>
|