index.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <template>
  2. <div>
  3. <el-upload
  4. :action="uploadUrl"
  5. :before-upload="handleBeforeUpload"
  6. :on-success="handleUploadSuccess"
  7. :on-error="handleUploadError"
  8. name="file"
  9. :show-file-list="false"
  10. :headers="headers"
  11. style="display: none"
  12. ref="upload"
  13. :data="{bucket:'tourism'}"
  14. v-if="this.type == 'url'"
  15. >
  16. </el-upload>
  17. <div class="editor" ref="editor" :style="styles"></div>
  18. </div>
  19. </template>
  20. <script>
  21. import Quill from "quill";
  22. import "quill/dist/quill.core.css";
  23. import "quill/dist/quill.snow.css";
  24. import "quill/dist/quill.bubble.css";
  25. import { getToken } from "@/utils/auth";
  26. export default {
  27. name: "Editor",
  28. props: {
  29. /* 编辑器的内容 */
  30. value: {
  31. type: String,
  32. default: "",
  33. },
  34. /* 高度 */
  35. height: {
  36. type: Number,
  37. default: null,
  38. },
  39. /* 最小高度 */
  40. minHeight: {
  41. type: Number,
  42. default: null,
  43. },
  44. /* 只读 */
  45. readOnly: {
  46. type: Boolean,
  47. default: false,
  48. },
  49. /* 上传文件大小限制(MB) */
  50. fileSize: {
  51. type: Number,
  52. default: 5,
  53. },
  54. /* 类型(base64格式、url格式) */
  55. type: {
  56. type: String,
  57. default: "url",
  58. }
  59. },
  60. data() {
  61. return {
  62. uploadUrl: process.env.VUE_APP_UPLOAD_FILE_API + "/thirdapi/upload/single/minio", // 上传的图片服务器地址
  63. headers: {
  64. Authorization: "Bearer " + getToken()
  65. },
  66. Quill: null,
  67. currentValue: "",
  68. options: {
  69. theme: "snow",
  70. bounds: document.body,
  71. debug: "warn",
  72. modules: {
  73. // 工具栏配置
  74. toolbar: [
  75. ["bold", "italic", "underline", "strike"], // 加粗 斜体 下划线 删除线
  76. ["blockquote", "code-block"], // 引用 代码块
  77. [{ list: "ordered" }, { list: "bullet" }], // 有序、无序列表
  78. [{ indent: "-1" }, { indent: "+1" }], // 缩进
  79. [{ size: ["small", false, "large", "huge"] }], // 字体大小
  80. [{ header: [1, 2, 3, 4, 5, 6, false] }], // 标题
  81. [{ color: [] }, { background: [] }], // 字体颜色、字体背景颜色
  82. [{ align: [] }], // 对齐方式
  83. ["clean"], // 清除文本格式
  84. ["link", "image", "video"] // 链接、图片、视频
  85. ],
  86. },
  87. placeholder: "请输入内容",
  88. readOnly: this.readOnly,
  89. },
  90. };
  91. },
  92. computed: {
  93. styles() {
  94. let style = {};
  95. if (this.minHeight) {
  96. style.minHeight = `${this.minHeight}px`;
  97. }
  98. if (this.height) {
  99. style.height = `${this.height}px`;
  100. }
  101. return style;
  102. },
  103. },
  104. watch: {
  105. value: {
  106. handler(val) {
  107. if (val !== this.currentValue) {
  108. this.currentValue = val === null ? "" : val;
  109. if (this.Quill) {
  110. this.Quill.pasteHTML(this.currentValue);
  111. }
  112. }
  113. },
  114. immediate: true,
  115. },
  116. },
  117. mounted() {
  118. this.init();
  119. },
  120. beforeDestroy() {
  121. this.Quill = null;
  122. },
  123. methods: {
  124. init() {
  125. const editor = this.$refs.editor;
  126. this.Quill = new Quill(editor, this.options);
  127. // 如果设置了上传地址则自定义图片上传事件
  128. if (this.type == 'url') {
  129. let toolbar = this.Quill.getModule("toolbar");
  130. toolbar.addHandler("image", (value) => {
  131. if (value) {
  132. this.$refs.upload.$children[0].$refs.input.click();
  133. } else {
  134. this.quill.format("image", false);
  135. }
  136. });
  137. }
  138. this.Quill.pasteHTML(this.currentValue);
  139. this.Quill.on("text-change", (delta, oldDelta, source) => {
  140. const html = this.$refs.editor.children[0].innerHTML;
  141. const text = this.Quill.getText();
  142. const quill = this.Quill;
  143. this.currentValue = html;
  144. this.$emit("input", html);
  145. this.$emit("on-change", { html, text, quill });
  146. });
  147. this.Quill.on("text-change", (delta, oldDelta, source) => {
  148. this.$emit("on-text-change", delta, oldDelta, source);
  149. });
  150. this.Quill.on("selection-change", (range, oldRange, source) => {
  151. this.$emit("on-selection-change", range, oldRange, source);
  152. });
  153. this.Quill.on("editor-change", (eventName, ...args) => {
  154. this.$emit("on-editor-change", eventName, ...args);
  155. });
  156. },
  157. // 上传前校检格式和大小
  158. handleBeforeUpload(file) {
  159. const type = ["image/jpeg", "image/jpg", "image/png", "image/svg"];
  160. const isJPG = type.includes(file.type);
  161. // 检验文件格式
  162. if (!isJPG) {
  163. this.$message.error(`图片格式错误!`);
  164. return false;
  165. }
  166. // 校检文件大小
  167. if (this.fileSize) {
  168. const isLt = file.size / 1024 / 1024 < this.fileSize;
  169. if (!isLt) {
  170. this.$message.error(`上传文件大小不能超过 ${this.fileSize} MB!`);
  171. return false;
  172. }
  173. }
  174. return true;
  175. },
  176. handleUploadSuccess(res, file) {
  177. // 如果上传成功
  178. if (res.code == 200) {
  179. // 获取富文本组件实例
  180. let quill = this.Quill;
  181. // 获取光标所在位置
  182. let length = quill.getSelection().index;
  183. // 插入图片 res.url为服务器返回的图片地址
  184. quill.insertEmbed(length, "image", process.env.VUE_APP_BASE_API + res.fileName);
  185. // 调整光标到最后
  186. quill.setSelection(length + 1);
  187. } else {
  188. this.$message.error("图片插入失败");
  189. }
  190. },
  191. handleUploadError() {
  192. this.$message.error("图片插入失败");
  193. },
  194. },
  195. };
  196. </script>
  197. <style>
  198. .editor, .ql-toolbar {
  199. white-space: pre-wrap !important;
  200. line-height: normal !important;
  201. }
  202. .quill-img {
  203. display: none;
  204. }
  205. .ql-snow .ql-tooltip[data-mode="link"]::before {
  206. content: "请输入链接地址:";
  207. }
  208. .ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  209. border-right: 0px;
  210. content: "保存";
  211. padding-right: 0px;
  212. }
  213. .ql-snow .ql-tooltip[data-mode="video"]::before {
  214. content: "请输入视频地址:";
  215. }
  216. .ql-snow .ql-picker.ql-size .ql-picker-label::before,
  217. .ql-snow .ql-picker.ql-size .ql-picker-item::before {
  218. content: "14px";
  219. }
  220. .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="small"]::before,
  221. .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]::before {
  222. content: "10px";
  223. }
  224. .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="large"]::before,
  225. .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]::before {
  226. content: "18px";
  227. }
  228. .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="huge"]::before,
  229. .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]::before {
  230. content: "32px";
  231. }
  232. .ql-snow .ql-picker.ql-header .ql-picker-label::before,
  233. .ql-snow .ql-picker.ql-header .ql-picker-item::before {
  234. content: "文本";
  235. }
  236. .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
  237. .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  238. content: "标题1";
  239. }
  240. .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
  241. .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  242. content: "标题2";
  243. }
  244. .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
  245. .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  246. content: "标题3";
  247. }
  248. .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
  249. .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  250. content: "标题4";
  251. }
  252. .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
  253. .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  254. content: "标题5";
  255. }
  256. .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
  257. .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  258. content: "标题6";
  259. }
  260. .ql-snow .ql-picker.ql-font .ql-picker-label::before,
  261. .ql-snow .ql-picker.ql-font .ql-picker-item::before {
  262. content: "标准字体";
  263. }
  264. .ql-snow .ql-picker.ql-font .ql-picker-label[data-value="serif"]::before,
  265. .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]::before {
  266. content: "衬线字体";
  267. }
  268. .ql-snow .ql-picker.ql-font .ql-picker-label[data-value="monospace"]::before,
  269. .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]::before {
  270. content: "等宽字体";
  271. }
  272. </style>