|
|
|
@ -2,7 +2,7 @@ |
|
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"> |
|
|
|
<head> |
|
|
|
<th:block th:include="include :: header('企业端-执法部门预约记录列表')" /> |
|
|
|
<link type="text/css" href="/css/stat1.css" rel="stylesheet"/> |
|
|
|
<link type="text/css" href="/css/stat1.css" rel="stylesheet" /> |
|
|
|
<style> |
|
|
|
.row { |
|
|
|
width: 100%; |
|
|
|
@ -266,7 +266,10 @@ |
|
|
|
columns: [ |
|
|
|
{ |
|
|
|
field : 'bureauDeptName', |
|
|
|
title : '执法部门' |
|
|
|
title : '执法部门', |
|
|
|
formatter:function (value) { |
|
|
|
return "<div style='text-align: left'>"+ value +"</div>"; |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
field : 'lawEnforcement', |
|
|
|
@ -287,13 +290,16 @@ |
|
|
|
}, |
|
|
|
{ |
|
|
|
field : 'enterpriseName', |
|
|
|
title : '企业名称' |
|
|
|
title : '企业名称', |
|
|
|
formatter:function (value) { |
|
|
|
return "<div style='text-align: left'>"+ value +"</div>"; |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
field : 'lawEnforcementItemText', |
|
|
|
title : '检查事项', |
|
|
|
formatter:function (value,row,index) { |
|
|
|
return $.table.tooltip(value); |
|
|
|
return "<div style='text-align: left'>"+ $.table.tooltip(value) +"</div>"; |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
@ -335,7 +341,7 @@ |
|
|
|
formatter:function (value,row,index) { |
|
|
|
for (i = 0; i < reson.length; i++) { |
|
|
|
if (reson[i].dictValue == row.checkCss) { |
|
|
|
return reson[i].dictLabel; |
|
|
|
return "<div style='text-align: left'>"+ reson[i].dictLabel +"</div>"; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|