| | |
| | | }, |
| | | data() { |
| | | return { |
| | | uploadUrl: process.env.VUE_APP_BASE_API + "/common/upload", // 上传的图片服务器地址 |
| | | uploadUrl: process.env.VUE_APP_BASE_API + "/system/oss/upload", // 上传的图片服务器地址 |
| | | headers: { |
| | | Authorization: "Bearer " + getToken() |
| | | }, |
| | |
| | | // 获取光标所在位置 |
| | | let length = quill.getSelection().index; |
| | | // 插入图片 res.url为服务器返回的图片地址 |
| | | quill.insertEmbed(length, "image", process.env.VUE_APP_BASE_API + res.fileName); |
| | | quill.insertEmbed(length, "image", res.data.url); |
| | | // 调整光标到最后 |
| | | quill.setSelection(length + 1); |
| | | } else { |
| | | this.$message.error("图片插入失败"); |
| | | this.$message.error(res.msg); |
| | | } |
| | | }, |
| | | handleUploadError() { |