更换编辑器

This commit is contained in:
2020-04-03 11:36:07 +08:00
parent 9dafceb2eb
commit 743d429bb8
591 changed files with 20918 additions and 99838 deletions

View File

@@ -4,10 +4,6 @@
<script src="__static__/plugins/tagsinput/bootstrap-tagsinput.js"></script>
<link rel="stylesheet" type="text/css" href="__static__/plugins/webuploader/webuploader.css">
<!-- 配置文件 -->
<script type="text/javascript" src="__static__/plugins/ueditor/ueditor.config.js"></script>
<!-- 编辑器源码文件 -->
<script type="text/javascript" src="__static__/plugins/ueditor/ueditor.all.min.js"></script>
<!-- datepicker statr -->
<link href="__static__/plugins/datepicker/css/foundation-datepicker.min.css" rel="stylesheet" type="text/css">
<script src="__static__/plugins/datepicker/js/foundation-datepicker.js"></script>

View File

@@ -6,17 +6,6 @@
<script src="__static__/common/js/hopscotch.js"></script>
<link rel="stylesheet" type="text/css" href="__static__/common/css/hopscotch.css">
<script src="__static__/common/js/messager.js"></script>
<script src="__js__/app.js"></script>
<script type="text/javascript">
(function(){
var SentCMS = window.Sent = {
"ROOT" : "__ROOT__", //当前网站地址
"APP" : "__APP__", //当前项目地址
"PUBLIC" : "__static__", //项目公共目录地址
}
})();
</script>
<script src="__static__/common/js/core.js"></script>
</body>
</html>

View File

@@ -12,15 +12,23 @@
<link rel="stylesheet" type="text/css" href="__css__/style.css"/>
<script type="text/javascript" src="__static__/plugins/jquery/jquery.min.js"></script>
<script type="text/javascript" src="__static__/plugins/layui/layui.all.js"></script>
<script src="__static__/common/js/messager.js"></script>
<script type="text/javascript">
var BASE_URL = "{:request()->domain()}"; //根目录地址
$(function(){
(function(){
var height = $(window).height();
if ($('#content-wrapper').height() < height) {
$('#content-wrapper').height($(window).height()-100);
$('#content-wrapper').css({'minHeight':$(window).height()-80});
}
})
var SentCMS = window.Sent = {
"ROOT" : "__ROOT__", //当前网站地址
"APP" : "__APP__", //当前项目地址
"PUBLIC" : "__static__", //项目公共目录地址
}
})();
</script>
<script src="__static__/common/js/core.js"></script>
<!--[if lt IE 9]>
<script src="__static__/common/js/html5shiv.js"></script>
<script src="__static__/common/js/respond.min.js"></script>