<!DOCTYPE html>
|
<html>
|
<head>
|
<meta charset="utf-8">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="renderer" content="webkit"/><!-- 让360浏览器默认选择webkit内核 -->
|
|
<!-- 全局css -->
|
<link rel="shortcut icon" href="${ctxPath}/static/favicon.ico">
|
<link href="${ctxPath}/static/css/bootstrap.min.css?v=3.3.6" rel="stylesheet">
|
<link href="${ctxPath}/static/css/font-awesome.css?v=4.4.0" rel="stylesheet">
|
<link href="${ctxPath}/static/css/plugins/chosen/chosen.css" rel="stylesheet">
|
<link href="${ctxPath}/static/css/plugins/bootstrap-table/bootstrap-table.min.css" rel="stylesheet">
|
<link href="${ctxPath}/static/css/plugins/validate/bootstrapValidator.min.css" rel="stylesheet">
|
<link href="${ctxPath}/static/css/style.css?v=4.1.0" rel="stylesheet">
|
<link href="${ctxPath}/static/css/_fstyle.css" rel="stylesheet">
|
<link href="${ctxPath}/static/css/plugins/iCheck/custom.css" rel="stylesheet">
|
<link href="${ctxPath}/static/css/plugins/webuploader/webuploader.css" rel="stylesheet">
|
<link href="${ctxPath}/static/css/plugins/ztree/zTreeStyle.css" rel="stylesheet">
|
<link href="${ctxPath}/static/css/plugins/bootstrap-treetable/bootstrap-treetable.css" rel="stylesheet"/>
|
<!-- <link href="${ctxPath}/static/css/plugins/ztree/demo.css" rel="stylesheet"> -->
|
|
<!-- 全局js -->
|
<script src="${ctxPath}/static/js/jquery.min.js?v=2.1.4"></script>
|
<script src="${ctxPath}/static/js/bootstrap.min.js?v=3.3.6"></script>
|
<script src="${ctxPath}/static/js/plugins/ztree/jquery.ztree.all.min.js"></script>
|
<script src="${ctxPath}/static/js/plugins/bootstrap-table/bootstrap-table.min.js"></script>
|
<script src="${ctxPath}/static/js/plugins/validate/bootstrapValidator.min.js"></script>
|
<script src="${ctxPath}/static/js/plugins/validate/zh_CN.js"></script>
|
<script src="${ctxPath}/static/js/plugins/bootstrap-table/bootstrap-table-mobile.min.js"></script>
|
<script src="${ctxPath}/static/js/plugins/bootstrap-table/locale/bootstrap-table-zh-CN.min.js"></script>
|
<script src="${ctxPath}/static/js/plugins/bootstrap-treetable/bootstrap-treetable.js"></script>
|
<script src="${ctxPath}/static/js/plugins/layer/layer.js"></script>
|
<script src="${ctxPath}/static/js/plugins/chosen/chosen.jquery.js"></script>
|
<script src="${ctxPath}/static/js/plugins/iCheck/icheck.min.js"></script>
|
<script src="${ctxPath}/static/js/plugins/laydate/laydate.js"></script>
|
<script src="${ctxPath}/static/js/plugins/webuploader/webuploader.min.js"></script>
|
<script src="${ctxPath}/static/js/common/ajax-object.js"></script>
|
<script src="${ctxPath}/static/js/common/bootstrap-table-object.js"></script>
|
<script src="${ctxPath}/static/js/common/tree-table-object.js"></script>
|
<script src="${ctxPath}/static/js/common/web-upload-object.js"></script>
|
<script src="${ctxPath}/static/js/common/ztree-object.js"></script>
|
<script src="${ctxPath}/static/js/common/Feng.js"></script>
|
|
<style type="text/css">
|
table{
|
width:100px;
|
table-layout:fixed;/* 只有定义了表格的布局算法为fixed,下面td的定义才能起作用。 */
|
}
|
td{
|
width:100%;
|
word-break:keep-all;/* 不换行 */
|
white-space:nowrap;/* 不换行 */
|
overflow:hidden;/* 内容超出宽度时隐藏超出部分的内容 */
|
text-overflow:ellipsis;/* 当对象内文本溢出时显示省略标记(...) ;需与overflow:hidden;一起使用*/
|
}
|
</style>
|
|
<script type="text/javascript">
|
Feng.addCtx("${ctxPath}");
|
Feng.sessionTimeoutRegistry();
|
</script>
|
</head>
|
|
<body class="gray-bg">
|
<div class="wrapper wrapper-content">
|
${layoutContent}
|
</div>
|
<script src="${ctxPath}/static/js/content.js?v=1.0.0"></script>
|
</body>
|
</html>
|