Administrator
2023-04-19 eeb08a586132f489c10e12551c6479b13c9def5e
提交 | 用户 | 时间
58d006 1 <?xml version="1.0" encoding="UTF-8"?>
A 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"
4 xmlns:c="http://java.sun.com/jsp/jstl/core"
5 xmlns:h="http://java.sun.com/jsf/html"
6 xmlns:f="http://java.sun.com/jsf/core"
7 xmlns:ui="http://java.sun.com/jsf/facelets">
8 <ui:composition template="/template/nit/tmp_brief.xhtml">
9     <ui:define name="acss">
10         <style>
11         .form-body span.text {
12             line-height: 34px
13         }
14         </style>
15     </ui:define>
16     <ui:define name="acontent">
17          <div class="row main-content">
18      <div class="col-md-12 main-content-header">
19       <div class="row">
20           <div class="col-md-12 form-horizontal">
21          
22         </div>
23       </div>
24       </div>
25     
26           <table class="table table-striped table-bordered table-condensed table-hover">
27                   <thead>
28                     <tr>
29                       <th>序号</th>
30                       <th>模块</th>
31                       <th>选择操作</th>
32                     </tr>
33                   </thead>
34                   <tbody data-bind="foreach:rolemodules">
35                     <tr>
36                       <td data-bind="text:$index()+1">序号</td>
37                       <td data-bind="text:$data.name"></td>
38                       <td >
39                         <!-- ko foreach:ops -->
40                             <label><input type="checkbox" class="form-control" data-bind="checked:check,click:$root.opcheck"/><span data-bind="text:title"></span></label>
41                         <!-- /ko-->
42                       </td>
43                     </tr>
44                   </tbody>
45                   <tfoot>
46                     <tr>
47                       <td colspan="6">
48                         <div id="pagdiv"></div>
49                       </td>
50                     </tr>
51                   </tfoot>
52           </table>
53       </div>
54       <input type="hidden" name="role" id="role" value="#{jrole.role.id}"/>
55     </ui:define>
56     <ui:define name="myscript">
57     <script type="text/javascript" src="#{request.contextPath}/system/permission/js/rolemodules.js"></script>
58     </ui:define>
59 </ui:composition>
60 </html>