提取公共js和公共css到zheng-admin
This commit is contained in:
parent
2b7961d40e
commit
6662d1964d
|
@ -16,4 +16,7 @@ a i{font-size: 13px;}
|
|||
.pagination>li>a, .pagination>li>span{color: #29a176;}
|
||||
.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus{background-color: #29a176;}*/
|
||||
|
||||
body{font-size: 12px;}
|
||||
.table i{font-size: 12px; color: #000;}
|
||||
.bootstrap-table .table>thead>tr>th{border-bottom: none;}
|
||||
.bootstrap-table .table:not(.table-condensed), .bootstrap-table .table:not(.table-condensed)>tbody>tr>td, .bootstrap-table .table:not(.table-condensed)>tbody>tr>th, .bootstrap-table .table:not(.table-condensed)>tfoot>tr>td, .bootstrap-table .table:not(.table-condensed)>tfoot>tr>th, .bootstrap-table .table:not(.table-condensed)>thead>tr>td{padding: 12px 8px;}
|
|
@ -1,4 +1,22 @@
|
|||
$(function() {
|
||||
// Waves初始化
|
||||
Waves.displayEffect();
|
||||
// 数据表格动态高度
|
||||
$(window).resize(function () {
|
||||
$('#table').bootstrapTable('resetView', {
|
||||
height: getHeight()
|
||||
});
|
||||
});
|
||||
});
|
||||
// 动态高度
|
||||
function getHeight() {
|
||||
return $(window).height() - 20;
|
||||
}
|
||||
// 数据表格展开内容
|
||||
function detailFormatter(index, row) {
|
||||
var html = [];
|
||||
$.each(row, function (key, value) {
|
||||
html.push('<p><b>' + key + ':</b> ' + value + '</p>');
|
||||
});
|
||||
return html.join('');
|
||||
}
|
|
@ -13,12 +13,10 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>组织管理</title>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-3.3.0/css/bootstrap.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/material-design-iconic-font-2.2.0/css/material-design-iconic-font.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.css" rel="stylesheet"/>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/css/common.css" rel="stylesheet"/>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -35,13 +33,7 @@
|
|||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/locale/bootstrap-table-zh-CN.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.js"></script>
|
||||
|
||||
<script src="${basePath}/resources/zheng-admin/js/common.js"></script>
|
||||
<style>
|
||||
body{font-size: 12px;}
|
||||
.table i{font-size: 12px; color: #000;}
|
||||
.bootstrap-table .table>thead>tr>th{border-bottom: none;}
|
||||
</style>
|
||||
<script>
|
||||
$(function() {
|
||||
// bootstrap table初始化
|
||||
|
@ -69,11 +61,6 @@ $(function() {
|
|||
$('[data-toggle="tooltip"]').tooltip();
|
||||
$('[data-toggle="popover"]').popover();
|
||||
});
|
||||
$(window).resize(function () {
|
||||
$('#table').bootstrapTable('resetView', {
|
||||
height: getHeight()
|
||||
});
|
||||
});
|
||||
});
|
||||
// 格式化操作按钮
|
||||
function actionFormatter(value, row, index) {
|
||||
|
@ -93,18 +80,6 @@ window.actionEvents = {
|
|||
console.log(value, row, index);
|
||||
}
|
||||
};
|
||||
// 展开内容
|
||||
function detailFormatter(index, row) {
|
||||
var html = [];
|
||||
$.each(row, function (key, value) {
|
||||
html.push('<p><b>' + key + ':</b> ' + value + '</p>');
|
||||
});
|
||||
return html.join('');
|
||||
}
|
||||
// 动态高度
|
||||
function getHeight() {
|
||||
return $(window).height() - 20;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -13,12 +13,10 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>权限管理</title>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-3.3.0/css/bootstrap.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/material-design-iconic-font-2.2.0/css/material-design-iconic-font.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.css" rel="stylesheet"/>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/css/common.css" rel="stylesheet"/>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -35,13 +33,7 @@
|
|||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/locale/bootstrap-table-zh-CN.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.js"></script>
|
||||
|
||||
<script src="${basePath}/resources/zheng-admin/js/common.js"></script>
|
||||
<style>
|
||||
body{font-size: 12px;}
|
||||
.table i{font-size: 12px; color: #000;}
|
||||
.bootstrap-table .table>thead>tr>th{border-bottom: none;}
|
||||
</style>
|
||||
<script>
|
||||
$(function() {
|
||||
// bootstrap table初始化
|
||||
|
@ -75,11 +67,6 @@ $(function() {
|
|||
$('[data-toggle="tooltip"]').tooltip();
|
||||
$('[data-toggle="popover"]').popover();
|
||||
});
|
||||
$(window).resize(function () {
|
||||
$('#table').bootstrapTable('resetView', {
|
||||
height: getHeight()
|
||||
});
|
||||
});
|
||||
});
|
||||
// 格式化操作按钮
|
||||
function actionFormatter(value, row, index) {
|
||||
|
@ -121,18 +108,6 @@ window.actionEvents = {
|
|||
console.log(value, row, index);
|
||||
}
|
||||
};
|
||||
// 展开内容
|
||||
function detailFormatter(index, row) {
|
||||
var html = [];
|
||||
$.each(row, function (key, value) {
|
||||
html.push('<p><b>' + key + ':</b> ' + value + '</p>');
|
||||
});
|
||||
return html.join('');
|
||||
}
|
||||
// 动态高度
|
||||
function getHeight() {
|
||||
return $(window).height() - 20;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -13,12 +13,10 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>权限管理</title>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-3.3.0/css/bootstrap.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/material-design-iconic-font-2.2.0/css/material-design-iconic-font.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.css" rel="stylesheet"/>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/css/common.css" rel="stylesheet"/>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -35,13 +33,7 @@
|
|||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/locale/bootstrap-table-zh-CN.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.js"></script>
|
||||
|
||||
<script src="${basePath}/resources/zheng-admin/js/common.js"></script>
|
||||
<style>
|
||||
body{font-size: 12px;}
|
||||
.table i{font-size: 12px; color: #000;}
|
||||
.bootstrap-table .table>thead>tr>th{border-bottom: none;}
|
||||
</style>
|
||||
<script>
|
||||
$(function() {
|
||||
// bootstrap table初始化
|
||||
|
@ -75,11 +67,6 @@ $(function() {
|
|||
$('[data-toggle="tooltip"]').tooltip();
|
||||
$('[data-toggle="popover"]').popover();
|
||||
});
|
||||
$(window).resize(function () {
|
||||
$('#table').bootstrapTable('resetView', {
|
||||
height: getHeight()
|
||||
});
|
||||
});
|
||||
});
|
||||
// 格式化操作按钮
|
||||
function actionFormatter(value, row, index) {
|
||||
|
@ -121,18 +108,6 @@ window.actionEvents = {
|
|||
console.log(value, row, index);
|
||||
}
|
||||
};
|
||||
// 展开内容
|
||||
function detailFormatter(index, row) {
|
||||
var html = [];
|
||||
$.each(row, function (key, value) {
|
||||
html.push('<p><b>' + key + ':</b> ' + value + '</p>');
|
||||
});
|
||||
return html.join('');
|
||||
}
|
||||
// 动态高度
|
||||
function getHeight() {
|
||||
return $(window).height() - 20;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -13,12 +13,10 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>权限管理</title>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-3.3.0/css/bootstrap.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/material-design-iconic-font-2.2.0/css/material-design-iconic-font.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.css" rel="stylesheet"/>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/css/common.css" rel="stylesheet"/>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -35,13 +33,7 @@
|
|||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/locale/bootstrap-table-zh-CN.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.js"></script>
|
||||
|
||||
<script src="${basePath}/resources/zheng-admin/js/common.js"></script>
|
||||
<style>
|
||||
body{font-size: 12px;}
|
||||
.table i{font-size: 12px; color: #000;}
|
||||
.bootstrap-table .table>thead>tr>th{border-bottom: none;}
|
||||
</style>
|
||||
<script>
|
||||
$(function() {
|
||||
// bootstrap table初始化
|
||||
|
@ -75,11 +67,6 @@ $(function() {
|
|||
$('[data-toggle="tooltip"]').tooltip();
|
||||
$('[data-toggle="popover"]').popover();
|
||||
});
|
||||
$(window).resize(function () {
|
||||
$('#table').bootstrapTable('resetView', {
|
||||
height: getHeight()
|
||||
});
|
||||
});
|
||||
});
|
||||
// 格式化操作按钮
|
||||
function actionFormatter(value, row, index) {
|
||||
|
@ -121,18 +108,6 @@ window.actionEvents = {
|
|||
console.log(value, row, index);
|
||||
}
|
||||
};
|
||||
// 展开内容
|
||||
function detailFormatter(index, row) {
|
||||
var html = [];
|
||||
$.each(row, function (key, value) {
|
||||
html.push('<p><b>' + key + ':</b> ' + value + '</p>');
|
||||
});
|
||||
return html.join('');
|
||||
}
|
||||
// 动态高度
|
||||
function getHeight() {
|
||||
return $(window).height() - 20;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -13,12 +13,10 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>角色管理</title>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-3.3.0/css/bootstrap.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/material-design-iconic-font-2.2.0/css/material-design-iconic-font.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.css" rel="stylesheet"/>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/css/common.css" rel="stylesheet"/>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -35,13 +33,7 @@
|
|||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/locale/bootstrap-table-zh-CN.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.js"></script>
|
||||
|
||||
<script src="${basePath}/resources/zheng-admin/js/common.js"></script>
|
||||
<style>
|
||||
body{font-size: 12px;}
|
||||
.table i{font-size: 12px; color: #000;}
|
||||
.bootstrap-table .table>thead>tr>th{border-bottom: none;}
|
||||
</style>
|
||||
<script>
|
||||
$(function() {
|
||||
// bootstrap table初始化
|
||||
|
@ -69,11 +61,6 @@ $(function() {
|
|||
$('[data-toggle="tooltip"]').tooltip();
|
||||
$('[data-toggle="popover"]').popover();
|
||||
});
|
||||
$(window).resize(function () {
|
||||
$('#table').bootstrapTable('resetView', {
|
||||
height: getHeight()
|
||||
});
|
||||
});
|
||||
});
|
||||
// 格式化操作按钮
|
||||
function actionFormatter(value, row, index) {
|
||||
|
@ -93,18 +80,6 @@ window.actionEvents = {
|
|||
console.log(value, row, index);
|
||||
}
|
||||
};
|
||||
// 展开内容
|
||||
function detailFormatter(index, row) {
|
||||
var html = [];
|
||||
$.each(row, function (key, value) {
|
||||
html.push('<p><b>' + key + ':</b> ' + value + '</p>');
|
||||
});
|
||||
return html.join('');
|
||||
}
|
||||
// 动态高度
|
||||
function getHeight() {
|
||||
return $(window).height() - 20;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -13,12 +13,10 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>系统管理</title>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-3.3.0/css/bootstrap.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/material-design-iconic-font-2.2.0/css/material-design-iconic-font.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.css" rel="stylesheet"/>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/css/common.css" rel="stylesheet"/>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -35,13 +33,7 @@
|
|||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/locale/bootstrap-table-zh-CN.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.js"></script>
|
||||
|
||||
<script src="${basePath}/resources/zheng-admin/js/common.js"></script>
|
||||
<style>
|
||||
body{font-size: 12px;}
|
||||
.table i{font-size: 12px; color: #000;}
|
||||
.bootstrap-table .table>thead>tr>th{border-bottom: none;}
|
||||
</style>
|
||||
<script>
|
||||
$(function() {
|
||||
// bootstrap table初始化
|
||||
|
@ -72,11 +64,6 @@ $(function() {
|
|||
$('[data-toggle="tooltip"]').tooltip();
|
||||
$('[data-toggle="popover"]').popover();
|
||||
});
|
||||
$(window).resize(function () {
|
||||
$('#table').bootstrapTable('resetView', {
|
||||
height: getHeight()
|
||||
});
|
||||
});
|
||||
});
|
||||
// 格式化操作按钮
|
||||
function actionFormatter(value, row, index) {
|
||||
|
@ -108,18 +95,6 @@ window.actionEvents = {
|
|||
console.log(value, row, index);
|
||||
}
|
||||
};
|
||||
// 展开内容
|
||||
function detailFormatter(index, row) {
|
||||
var html = [];
|
||||
$.each(row, function (key, value) {
|
||||
html.push('<p><b>' + key + ':</b> ' + value + '</p>');
|
||||
});
|
||||
return html.join('');
|
||||
}
|
||||
// 动态高度
|
||||
function getHeight() {
|
||||
return $(window).height() - 20;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -13,12 +13,10 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>用户管理</title>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-3.3.0/css/bootstrap.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/material-design-iconic-font-2.2.0/css/material-design-iconic-font.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.css" rel="stylesheet"/>
|
||||
<link href="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.css" rel="stylesheet"/>
|
||||
|
||||
<link href="${basePath}/resources/zheng-admin/css/common.css" rel="stylesheet"/>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -35,13 +33,7 @@
|
|||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/bootstrap-table.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/bootstrap-table-1.11.0/locale/bootstrap-table-zh-CN.min.js"></script>
|
||||
<script src="${basePath}/resources/zheng-admin/plugins/waves-0.7.5/waves.min.js"></script>
|
||||
|
||||
<script src="${basePath}/resources/zheng-admin/js/common.js"></script>
|
||||
<style>
|
||||
body{font-size: 12px;}
|
||||
.table i{font-size: 12px; color: #000;}
|
||||
.bootstrap-table .table>thead>tr>th{border-bottom: none;}
|
||||
</style>
|
||||
<script>
|
||||
$(function() {
|
||||
// bootstrap table初始化
|
||||
|
@ -74,11 +66,6 @@ $(function() {
|
|||
$('[data-toggle="tooltip"]').tooltip();
|
||||
$('[data-toggle="popover"]').popover();
|
||||
});
|
||||
$(window).resize(function () {
|
||||
$('#table').bootstrapTable('resetView', {
|
||||
height: getHeight()
|
||||
});
|
||||
});
|
||||
});
|
||||
// 格式化操作按钮
|
||||
function actionFormatter(value, row, index) {
|
||||
|
@ -120,18 +107,6 @@ window.actionEvents = {
|
|||
console.log(value, row, index);
|
||||
}
|
||||
};
|
||||
// 展开内容
|
||||
function detailFormatter(index, row) {
|
||||
var html = [];
|
||||
$.each(row, function (key, value) {
|
||||
html.push('<p><b>' + key + ':</b> ' + value + '</p>');
|
||||
});
|
||||
return html.join('');
|
||||
}
|
||||
// 动态高度
|
||||
function getHeight() {
|
||||
return $(window).height() - 20;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue