wangEnduit.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <template lang="html">
  2. <div class="editor" ref="editorBox">
  3. <div ref="toolbar" class="toolbar">
  4. </div>
  5. <div ref="editor" class="text">
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. import E from "wangeditor";
  11. import "../../common/aws-sdk-2.235.1.min";
  12. import { Loading } from "element-ui";
  13. // import 'wangeditor/release/wangEditor.min.css'
  14. export default {
  15. name: "editoritem",
  16. data() {
  17. return {
  18. // uploadPath,
  19. editor: null,
  20. info_: null,
  21. };
  22. },
  23. model: {
  24. prop: "value",
  25. event: "change",
  26. },
  27. props: {
  28. value: {
  29. type: String,
  30. default: "",
  31. },
  32. isClear: {
  33. type: Boolean,
  34. default: false,
  35. },
  36. placeholder: {
  37. type: String,
  38. default: "请输入正文",
  39. },
  40. },
  41. watch: {
  42. isClear(val) {
  43. // 触发清除文本域内容
  44. if (val) {
  45. this.editor.txt.clear();
  46. this.info_ = null;
  47. }
  48. },
  49. value: function (value) {
  50. if (value !== this.editor.txt.html()) {
  51. this.editor.txt.html(this.value);
  52. }
  53. },
  54. //value为编辑框输入的内容,这里我监听了一下值,当父组件调用得时候,如果给value赋值了,子组件将会显示父组件赋给的值
  55. },
  56. mounted() {
  57. this.seteditor();
  58. this.editor.txt.html(this.value);
  59. },
  60. methods: {
  61. seteditor() {
  62. this.editor = new E(this.$refs.toolbar, this.$refs.editor);
  63. // 关闭菜单栏fixed
  64. this.editor.config.menuFixed = false;
  65. //修改图片
  66. this.editor.config.uploadImgShowBase64 = true;
  67. // 上传图片大小 5M
  68. this.editor.config.uploadImgMaxSize = 10 * 1024 * 1024;
  69. // 普通的自定义菜单
  70. this.editor.config.menus = [
  71. "head", //标题
  72. "bold", //加粗
  73. "fontSize", //字体大小
  74. // "fontName", //字体
  75. // "italic", //斜体
  76. // "underline", //下划线
  77. // "strikeThrough", //删除线
  78. "indent", //缩进
  79. // "lineHeight", //行高
  80. // "foreColor",
  81. // "backColor",
  82. // "link",
  83. "list",
  84. // "todo",
  85. "justify",
  86. // "quote",
  87. // "emoticon",
  88. "image",
  89. // "video",
  90. "table",
  91. // "code",
  92. // "splitLine",
  93. "undo",
  94. "redo",
  95. ];
  96. // 带格式粘贴
  97. this.editor.config.pasteFilterStyle = false;
  98. //忽略粘贴内容中的图片
  99. this.editor.config.pasteIgnoreImg = false;
  100. this.editor.config.showLinkImg = false;
  101. this.editor.config.placeholder = this.placeholder;
  102. var that = this;
  103. this.editor.config.customUploadImg = function (files, insert) {
  104. const loading = Loading.service({
  105. lock: true,
  106. fullscreen: true,
  107. background: "rgba(0, 0, 0, 0.7)",
  108. target: that.$refs.editorBox,
  109. });
  110. let BOX = document.querySelector(".el-loading-mask");
  111. BOX.style.zIndex = "99999999";//固定一个最大值,是字符串
  112. // 图片自定义上传方法
  113. for (let i = 0; i < files.length; i++) {
  114. var file = files[i];
  115. var credentials = {
  116. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  117. secretAccessKey: "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",
  118. }; //秘钥形式的登录上传
  119. window.AWS.config.update(credentials);
  120. window.AWS.config.region = "cn-northwest-1"; //设置区域
  121. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  122. if (file) {
  123. var params = {
  124. Key:
  125. file.name.split(".")[0] +
  126. new Date().getTime() +
  127. "." +
  128. file.name.split(".")[file.name.split(".").length - 1],
  129. ContentType: file.type,
  130. Body: file,
  131. "Access-Control-Allow-Credentials": "*",
  132. ACL: "public-read",
  133. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  134. var options = {
  135. partSize: 2048 * 1024 * 1024,
  136. queueSize: 2,
  137. leavePartsOnError: true,
  138. };
  139. bucket
  140. .upload(params, options)
  141. .on("httpUploadProgress", function (evt) {
  142. //这里可以写进度条
  143. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  144. })
  145. .send(function (err, data) {
  146. if (i == files.length - 1) {
  147. loading.close();
  148. }
  149. if (err) {
  150. that.$message.error("上传失败");
  151. } else {
  152. //上传成功处理
  153. insert(data.Location);
  154. }
  155. });
  156. }
  157. }
  158. };
  159. //配置 自定义处理粘贴的文本内容
  160. this.editor.config.pasteTextHandle = function (content) {
  161. if (content == "" && !content) return "";
  162. var str = content;
  163. str = str.replace(/<xml>[\s\S]*?<\/xml>/gi, "");
  164. str = str.replace(/<style>[\s\S]*?<\/style>/gi, "");
  165. str = str.replace(/<\/?[^>]*>/g, "");
  166. str = str.replace(/[ | ]*\n/g, "\n");
  167. str = str.replace(/&nbsp;/gi, "");
  168. // console.log('****', content)
  169. // console.log('****', str)
  170. return str;
  171. };
  172. this.editor.config.onchange = (html) => {
  173. this.info_ = html; // 绑定当前逐渐地值
  174. this.$emit("change", this.info_); // 将内容同步到父组件中
  175. };
  176. // 创建富文本编辑器
  177. this.editor.create();
  178. },
  179. },
  180. };
  181. </script>
  182. <style lang="css" scoped>
  183. .editor {
  184. width: 100%;
  185. margin: 10px auto;
  186. position: relative;
  187. z-index: 0;
  188. }
  189. .toolbar {
  190. border: 1px solid #ccc;
  191. }
  192. .text {
  193. border: 1px solid #ccc;
  194. height: 300px;
  195. overflow: auto;
  196. }
  197. /* table 样式 */
  198. .editor>>>table {
  199. border-top: 1px solid #ccc;
  200. border-left: 1px solid #ccc;
  201. }
  202. .editor>>>table td,
  203. .editor>>>table th {
  204. border-bottom: 1px solid #ccc;
  205. border-right: 1px solid #ccc;
  206. padding: 5px 10px;
  207. max-width: 0px;
  208. height: 30px;
  209. vertical-align: baseline;
  210. }
  211. .editor>>>table th {
  212. border-bottom: 2px solid #ccc;
  213. text-align: center;
  214. }
  215. /* blockquote 样式 */
  216. .editor>>>blockquote {
  217. display: block;
  218. border-left: 8px solid #d0e5f2;
  219. padding: 5px 10px;
  220. margin: 10px 0;
  221. line-height: 1.4;
  222. font-size: 100%;
  223. background-color: #f1f1f1;
  224. }
  225. /* code 样式 */
  226. .editor>>>code {
  227. display: inline-block;
  228. *display: inline;
  229. *zoom: 1;
  230. background-color: #f1f1f1;
  231. border-radius: 3px;
  232. padding: 3px 5px;
  233. margin: 0 3px;
  234. }
  235. .editor>>>pre code {
  236. display: block;
  237. }
  238. /* ul ol 样式 */
  239. .editor>>>ul,
  240. ol {
  241. margin: 10px 0 10px 20px;
  242. }
  243. .editor>>>.w-e-text p,
  244. .editor>>>.w-e-text h1,
  245. .editor>>>.w-e-text h2,
  246. .editor>>>.w-e-text h3,
  247. .editor>>>.w-e-text h4,
  248. .editor>>>.w-e-text h5,
  249. .editor>>>.w-e-text table,
  250. .editor>>>.w-e-text pre {
  251. line-height: 0.9;
  252. margin: 5px 0 !important;
  253. }
  254. .editor>>>.w-e-text-container .placeholder {
  255. font-size: 14px;
  256. color: #757575;
  257. }
  258. .editor>>>.w-e-text{
  259. padding: 10px 10px;
  260. }
  261. </style>