1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <!--#layout("/common/layout.html",{"jsBase":"/js/admin/org/"}){ -->
| <layui:searchForm formId="orgUserSearchForm" condition="${search}">
| <input type="hidden" name="orgId" value="${org.id}">
| </layui:searchForm>
|
| <table id="userTable" lay-filter="userTable"></table>
| <layui:closeButton id="close"/>
| <!--#} -->
| <script>
|
| layui.use(['orgUser'], function(){
| var orgUser = layui.orgUser
| orgUser.init(${org.id});
| });
|
| </script>
|
|