|
|
|
@ -18,6 +18,10 @@
|
|
|
|
|
color: #2d8cf0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.not-equal-color {
|
|
|
|
|
color: #FFB800 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woo-tool-span {
|
|
|
|
|
margin: 0 3px;
|
|
|
|
|
position: relative;
|
|
|
|
@ -36,6 +40,21 @@
|
|
|
|
|
<div class="layui-card">
|
|
|
|
|
<div class="layui-card-body">
|
|
|
|
|
<table id="data-table"></table>
|
|
|
|
|
<script type="text/html" id="org_name_tpl">
|
|
|
|
|
{{# if(d.org_name != d.ty_org_name){ }}
|
|
|
|
|
<span class="not-equal-color">{{d.org_name}}</span>
|
|
|
|
|
{{# } else { }}
|
|
|
|
|
{{d.org_name}}
|
|
|
|
|
{{# } }}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<script type="text/html" id="ty_org_name_tpl">
|
|
|
|
|
{{# if(d.org_name != d.ty_org_name){ }}
|
|
|
|
|
<span class="not-equal-color">{{d.ty_org_name}}</span>
|
|
|
|
|
{{# } else { }}
|
|
|
|
|
{{d.ty_org_name}}
|
|
|
|
|
{{# } }}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -75,8 +94,8 @@
|
|
|
|
|
},
|
|
|
|
|
cols: [[
|
|
|
|
|
{ title: '序号', unresize: true, align: 'center', width: "5%", type: 'numbers' },
|
|
|
|
|
{ title: '单位名称', unresize: true, align: 'center', field: 'org_name' },
|
|
|
|
|
{ title: '第三方系统单位名称', unresize: true, align: 'center', field: 'org_name' },
|
|
|
|
|
{ title: '单位名称', unresize: true, align: 'center', templet: '#org_name_tpl' },
|
|
|
|
|
{ title: '第三方系统单位名称', unresize: true, align: 'center', templet: '#ty_org_name_tpl' },
|
|
|
|
|
{ title: '单位类型', unresize: true, align: 'center', field: 'bureau_type_name', width: "20%" },
|
|
|
|
|
{ title: '操作', unresize: true, align: 'center', width: "10%", toolbar: '#table-bar' }
|
|
|
|
|
]],
|
|
|
|
|