cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[#macro webhtmleditor id="" value="" width="100%" height="400px"]
 
<link rel="stylesheet" href="${common_static}/static/plugins/kindeditor/themes/default/default.css" />
<script charset="utf-8" src="${common_static}/static/plugins/kindeditor/kindeditor-min.js"></script>
<script charset="utf-8" src="${common_static}/static/plugins/kindeditor/lang/zh_CN.js"></script>
<script type="text/javascript">
<!--
            var editor;
            KindEditor.ready(function(K) {
                editor = K.create('textarea[name="content"]', {
                    themeType:"simple",
                    allowFileUpload : false,
                    uploadJson:"${base}/business/website/WebHtmlEditor/image_upload.html",
                    filterMode : false,
                    resizeType : 0,
                    items : [
                        'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
                        'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
                        'insertunorderedlist', '|', 'emoticons', 'image', 'link']
                });
            });
//-->
</script>
<textarea name="${id}" id="${id}" style="width:${width};height:${height};visibility:hidden;">${value}</textarea>
[/#macro]