Browse Source

富文本编辑框去掉表格控件

xiatian 1 year ago
parent
commit
d3fc8cabe6
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/components/ckeditor.vue
  2. 1 1
      src/modules/questions/component/ckeditor.vue

+ 1 - 1
src/components/ckeditor.vue

@@ -57,7 +57,7 @@ export default {
   mounted() {
   mounted() {
     var removePluginStr = "bidi,image";
     var removePluginStr = "bidi,image";
     var removeButtonStr =
     var removeButtonStr =
-      "Styles,Format,ShowBlocks,Iframe,PageBreak,Smiley,Flash,Language,JustifyBlock,JustifyRight,JustifyCenter,JustifyLeft,CreateDiv,CopyFormatting,ImageButton,Button,HiddenField,Select,Textarea,TextField,Radio,Checkbox,Form,BGColor,SelectAll,Replace,Find,Templates,Print,Preview,NewPage,Save,Underline,Subscript,Superscript,HorizontalRule,Unlink,Link,Scayt,Cut,Copy,Paste,PasteText,PasteFromWord,Maximize,Italic,Bold,NumberedList,BulletedList,Indent,Outdent,Blockquote,About,RemoveFormat,Strike";
+      "Table,Styles,Format,ShowBlocks,Iframe,PageBreak,Smiley,Flash,Language,JustifyBlock,JustifyRight,JustifyCenter,JustifyLeft,CreateDiv,CopyFormatting,ImageButton,Button,HiddenField,Select,Textarea,TextField,Radio,Checkbox,Form,BGColor,SelectAll,Replace,Find,Templates,Print,Preview,NewPage,Save,Underline,Subscript,Superscript,HorizontalRule,Unlink,Link,Scayt,Cut,Copy,Paste,PasteText,PasteFromWord,Maximize,Italic,Bold,NumberedList,BulletedList,Indent,Outdent,Blockquote,About,RemoveFormat,Strike";
     if (!this.extrabuttons || this.extrabuttons.indexOf("Font") == -1) {
     if (!this.extrabuttons || this.extrabuttons.indexOf("Font") == -1) {
       removeButtonStr = removeButtonStr + ",Font";
       removeButtonStr = removeButtonStr + ",Font";
     }
     }

+ 1 - 1
src/modules/questions/component/ckeditor.vue

@@ -82,7 +82,7 @@ export default {
       ],
       ],
       removePlugins: "bidi,colorbutton,image",
       removePlugins: "bidi,colorbutton,image",
       removeButtons:
       removeButtons:
-        "Font,FontSize,Styles,Format,ShowBlocks,Iframe,PageBreak,Smiley,Flash,Language,JustifyBlock,JustifyRight,JustifyCenter,JustifyLeft,CreateDiv,CopyFormatting,ImageButton,Button,HiddenField,Select,Textarea,TextField,Radio,Checkbox,Form,BGColor,SelectAll,Replace,Find,Templates,Print,Preview,NewPage,Save,Subscript,Superscript,HorizontalRule,Unlink,Link,Scayt,Cut,Copy,Paste,PasteText,PasteFromWord,Maximize,NumberedList,BulletedList,Indent,Outdent,Blockquote,About,RemoveFormat,Strike",
+        "Table,Font,FontSize,Styles,Format,ShowBlocks,Iframe,PageBreak,Smiley,Flash,Language,JustifyBlock,JustifyRight,JustifyCenter,JustifyLeft,CreateDiv,CopyFormatting,ImageButton,Button,HiddenField,Select,Textarea,TextField,Radio,Checkbox,Form,BGColor,SelectAll,Replace,Find,Templates,Print,Preview,NewPage,Save,Subscript,Superscript,HorizontalRule,Unlink,Link,Scayt,Cut,Copy,Paste,PasteText,PasteFromWord,Maximize,NumberedList,BulletedList,Indent,Outdent,Blockquote,About,RemoveFormat,Strike",
     };
     };
     if (this.display !== "inline") {
     if (this.display !== "inline") {
       window.CKEDITOR.replace(this.id, config);
       window.CKEDITOR.replace(this.id, config);