huwhois 3 years ago
parent
commit
d988e69eb5
2 changed files with 4 additions and 1 deletions
  1. 3 1
      README.md
  2. 1 0
      view/sys/article/save.html

+ 3 - 1
README.md

@@ -95,4 +95,6 @@ blockHeader 修改
     }
 ```
 
-
+## 2022-03-25
+1. 后台富文本编辑器由 ueditor 改为 ckeditor
+2. 新增 ckeditor 图片上传接口

+ 1 - 0
view/sys/article/save.html

@@ -223,6 +223,7 @@
             return false
         }
 
+        const content = window.editor.getData();
         $("<input/>").attr("type","hidden").attr("name", "content").val(content).appendTo($("#form-save"));
         
         $("#form-save")[0].submit();