|
@@ -4,6 +4,8 @@
|
|
|
<script th:include="sys/common/metaCSS" th:remove="tag"></script>
|
|
|
<script th:include="sys/common/metaJS" th:remove="tag"></script>
|
|
|
<script src="sys/js/My97DatePicker/WdatePicker.js" th:src="@{/static/sys/js/My97DatePicker/WdatePicker.js}"></script>
|
|
|
+<link href="sys/css/jquery.searchableSelect.css" th:href="@{/static/sys/css/jquery.searchableSelect.css}" rel="stylesheet"/>
|
|
|
+<script src="js/layer/layer.js" th:src="@{/static/sys/js/jquery.searchableSelect.js}"></script>
|
|
|
</head>
|
|
|
<style>
|
|
|
.tablelink{margin-right:10px;}
|
|
@@ -30,7 +32,7 @@
|
|
|
<ul class="seachform">
|
|
|
<li>
|
|
|
<label>所有商户:</label>
|
|
|
- <select class="scinput select_width" name="merchantId" style="width: 150px;" >
|
|
|
+ <select class="scinput select_width" name="merchantId" id="merchantId" style="width: 150px;" >
|
|
|
<option value="">全部</option>
|
|
|
<option th:each="item:${poslist}" th:selected="${search.get('merchantId') eq item.id ? true : false}" th:value="${item.id}">[[${item.unitName}]]</option>
|
|
|
</select>
|
|
@@ -112,10 +114,15 @@
|
|
|
</script>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
+$(function(){
|
|
|
+ $('#merchantId').searchableSelect();
|
|
|
+});
|
|
|
+
|
|
|
+
|
|
|
$("#button").on('click',function(){
|
|
|
- document.getElementById("seachform").action = "[[${sysUrl}]]/sys/fx/exportMerchantSignList";
|
|
|
+ document.getElementById("seachform").action = "[[${sysUrl}]]/sys/fx/exportMerchantMealList";
|
|
|
$("#seachform").submit();
|
|
|
- document.getElementById("seachform").action = "[[${sysUrl}]]/sys/fx/merchantSignList.html";
|
|
|
+ document.getElementById("seachform").action = "[[${sysUrl}]]/sys/fx/merchantMealList.html";
|
|
|
});
|
|
|
</script>
|
|
|
|