wangEnduit.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <template lang="html">
  2. <div class="editor">
  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. export default {
  12. name: 'editoritem',
  13. data () {
  14. let myToken = localStorage.getItem('token')
  15. return {
  16. myToken,
  17. editor: null,
  18. info_: null,
  19. isChange: false,
  20. loading: null
  21. }
  22. },
  23. model: {
  24. prop: 'value',
  25. event: 'change'
  26. },
  27. props: {
  28. value: {
  29. type: String,
  30. default: ''
  31. }
  32. },
  33. watch: {
  34. isClear (val) {
  35. // 触发清除文本域内容
  36. if (val) {
  37. this.editor.txt.clear()
  38. this.info_ = null
  39. }
  40. },
  41. value: function (value) {
  42. // if (value !== this.editor.txt.html()) {
  43. // this.editor.txt.html(this.value)
  44. // }
  45. if (!this.isChange) {
  46. this.editor.txt.html(this.value)
  47. }
  48. this.isChange = false
  49. }
  50. // value为编辑框输入的内容,这里我监听了一下值,当父组件调用得时候,如果给value赋值了,子组件将会显示父组件赋给的值
  51. },
  52. mounted () {
  53. this.seteditor()
  54. this.editor.txt.html(this.value)
  55. },
  56. methods: {
  57. seteditor () {
  58. // http://192.168.2.125:8080/admin/storage/create
  59. this.editor = new E(this.$refs.toolbar, this.$refs.editor)
  60. this.editor.customConfig.uploadImgShowBase64 = false // base 64 存储图片
  61. this.editor.customConfig.uploadImgServer = this.$url + '/admin/upload/uploadImg' // 配置服务器端地址
  62. this.editor.customConfig.uploadImgHeaders = {} // 自定义 header
  63. this.editor.customConfig.uploadFileName = 'file' // 后端接受上传文件的参数名
  64. this.editor.customConfig.uploadImgMaxSize = 10 * 1024 * 1024 // 将图片大小限制为 10M
  65. this.editor.customConfig.uploadImgMaxLength = 20 // 限制一次最多上传 20 张图片
  66. this.editor.customConfig.uploadImgTimeout = 3 * 60 * 1000 // 设置超时时间
  67. // 配置菜单
  68. this.editor.customConfig.menus = [
  69. 'head', // 标题
  70. 'bold', // 粗体
  71. 'fontSize', // 字号
  72. 'fontName', // 字体
  73. 'italic', // 斜体
  74. 'underline', // 下划线
  75. 'strikeThrough', // 删除线
  76. 'foreColor', // 文字颜色
  77. 'backColor', // 背景颜色
  78. 'link', // 插入链接
  79. 'list', // 列表
  80. 'justify', // 对齐方式
  81. 'quote', // 引用
  82. 'emoticon', // 表情
  83. 'image', // 插入图片
  84. 'table', // 表格
  85. // 'video', // 插入视频
  86. // 'code', // 插入代码
  87. 'undo', // 撤销
  88. 'redo', // 重复
  89. 'fullscreen' // 全屏
  90. ]
  91. // this.editor.customConfig.debug = true
  92. this.editor.customConfig.customUploadImg = (files, insert) => {
  93. console.log(files, '@todo upload')
  94. this.loading = this.$loading({
  95. lock: true,
  96. text: 'Loading',
  97. spinner: 'el-icon-loading',
  98. background: 'rgba(0, 0, 0, 0.7)'
  99. })
  100. this.UploadImg(files, insert)
  101. }
  102. this.editor.customConfig.onchange = (html) => {
  103. this.isChange = true
  104. this.info_ = html // 绑定当前逐渐地值
  105. this.$emit('change', this.info_) // 将内容同步到父组件中
  106. }
  107. // 创建富文本编辑器
  108. this.editor.create()
  109. },
  110. UploadImg (files, insert) {
  111. let formData = new FormData()
  112. formData.append('file', files[0])
  113. let file = Array.from(files)
  114. this.$api.post('/upload/uploadImg', formData).then(res => {
  115. this.loading.close()
  116. console.log(res, 'upload is finally')
  117. const img = this.$img + res
  118. insert(img)
  119. file.shift()
  120. file.length && this.UploadImg(file, insert)
  121. }).catch(err => {
  122. this.loading.close()
  123. console.log(err)
  124. })
  125. }
  126. }
  127. }
  128. </script>
  129. <style lang="css" scoped>
  130. .editor {
  131. width: 100%;
  132. margin: 0 auto;
  133. position: relative;
  134. z-index: 0;
  135. }
  136. .toolbar {
  137. border: 1px solid #ccc;
  138. }
  139. .text {
  140. border: 1px solid #ccc;
  141. height: 400px;
  142. width: 100%;
  143. }
  144. img {
  145. max-width: 100%;
  146. }
  147. </style>