change - 分页导航栏样式问题处理

main
wenjy 3 years ago
parent 5d099d2e62
commit f1b1b9c1be

File diff suppressed because it is too large Load Diff

@ -1366,6 +1366,8 @@ button, input, select, textarea {
a { a {
color: #337ab7; color: #337ab7;
padding-left: 12px;
font-size: 13px;
text-decoration: none text-decoration: none
} }

@ -8,7 +8,7 @@
<!-- 避免IE使用兼容模式 --> <!-- 避免IE使用兼容模式 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<link th:href="@{favicon.ico}" rel="shortcut icon"/> <link th:href="@{favicon.ico}" rel="shortcut icon"/>
<link th:href="@{/styleCss/bootstrap.min.css}" rel="stylesheet"/> <link th:href="@{/index/bootstrap.min.css}" rel="stylesheet"/>
<link th:href="@{/styleCss/jquery.contextMenu.min.css}" rel="stylesheet"/> <link th:href="@{/styleCss/jquery.contextMenu.min.css}" rel="stylesheet"/>
<link th:href="@{/styleCss/font-awesome.min.css}" rel="stylesheet"/> <link th:href="@{/styleCss/font-awesome.min.css}" rel="stylesheet"/>
<link th:href="@{/styleCss/animate.min.css}" rel="stylesheet"/> <link th:href="@{/styleCss/animate.min.css}" rel="stylesheet"/>

@ -18,18 +18,6 @@
<label>报警类型:</label> <label>报警类型:</label>
<input type="text" name="alarmtypeId"/> <input type="text" name="alarmtypeId"/>
</li> </li>
<li>
<label>最小值:</label>
<input type="text" name="minValue"/>
</li>
<li>
<label>异常值:</label>
<input type="text" name="alarmValue"/>
</li>
<li>
<label>最大值:</label>
<input type="text" name="maxValue"/>
</li>
<li> <li>
<label>采集时间:</label> <label>采集时间:</label>
<input type="text" name="collectTime"/> <input type="text" name="collectTime"/>
@ -56,6 +44,9 @@
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="record:recordAlarm:export"> <a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="record:recordAlarm:export">
<i class="fa fa-download"></i> 导出 <i class="fa fa-download"></i> 导出
</a> </a>
<a class="btn btn-info" onclick="selectColumns()">
<i class="fa fa-check"></i> 异常处理
</a>
</div> </div>
<div class="col-sm-12 select-table table-striped"> <div class="col-sm-12 select-table table-striped">
<table id="bootstrap-table"></table> <table id="bootstrap-table"></table>
@ -79,6 +70,10 @@
columns: [{ columns: [{
checkbox: true checkbox: true
}, },
{
field: 'alarmuid',
title: '告警编号'
},
{ {
field: 'sensorId', field: 'sensorId',
title: '传感器' title: '传感器'
@ -116,6 +111,11 @@
}; };
$.table.init(options); $.table.init(options);
}); });
function selectColumns() {
var column = $.table.selectColumns('alarmuid');
alert(column);
}
</script> </script>
</body> </body>
</html> </html>
Loading…
Cancel
Save