1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  | <!DOCTYPE html> 
 |  <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"> 
 |  <head> 
 |      <th:block th:include="include :: header('处理意见详情列表')" /> 
 |      <style type="text/css"> 
 |          .fixed-table-pagination{ 
 |              display: none !important; 
 |          } 
 |      </style> 
 |  </head> 
 |  <body class="gray-bg"> 
 |       <div class="container-div"> 
 |          <div class="row"> 
 |              <div class="col-sm-24 select-table table-striped"> 
 |                  <table id="bootstrap-table"></table> 
 |              </div> 
 |          </div> 
 |      </div> 
 |      <th:block th:include="include :: footer" /> 
 |      <script th:inline="javascript"> 
 |    
 |          const exceptionId = [[${exceptionId}]]; 
 |          var prefix = ctx + "geo/exception"; 
 |    
 |          $(function() { 
 |              var options = { 
 |                  url: prefix + "/handleOpinionDetails/" + exceptionId, 
 |                  columns: [ 
 |                  { 
 |                          field: '', 
 |                          title: '序号', 
 |                          align:'center', 
 |                          formatter: function (value, row, index) { 
 |                              return index + 1; 
 |                          } 
 |                  }, 
 |                  { 
 |                      field : 'groupname',  
 |                      title : '填写意见的人员角色' 
 |                  }, 
 |                  { 
 |                      field : 'opinion',  
 |                      title : '异常处理意见' 
 |                  }, 
 |                  { 
 |                      field : 'username',  
 |                      title : '填写意见的人员姓名' 
 |                  }] 
 |              }; 
 |              $.table.init(options); 
 |          }); 
 |      </script> 
 |  </body> 
 |  </html> 
 |  
  |