Merge branch 'feature-rebuild' of github.com:doocs/md into feature-rebuild

This commit is contained in:
JimQing 2020-07-13 20:58:49 +08:00
commit 8233c9aba3

View File

@ -184,35 +184,26 @@ export default {
}, },
// //
uploaded(response) { uploaded(response) {
if (response) { if (!response || !response.success) {
if (response.success) {
//
const cursor = this.editor.getCursor();
const imageUrl = response.data;
const markdownImage = `![](${imageUrl})`;
// Markdown URL
this.editor.replaceSelection(`\n${markdownImage}\n`, cursor);
this.$message({
showClose: true,
message: '图片插入成功',
type: 'success'
});
this.onEditorRefresh();
} else {
//
this.$message({
showClose: true,
message: response.message,
type: 'error'
});
}
} else {
this.$message({ this.$message({
showClose: true, showClose: true,
message: '上传图片未知异常', message: '上传图片未知异常',
type: 'error' type: 'error'
}); });
return;
} }
//
const cursor = this.editor.getCursor();
const imageUrl = response.data;
const markdownImage = `![](${imageUrl})`;
// Markdown URL
this.editor.replaceSelection(`\n${markdownImage}\n`, cursor);
this.$message({
showClose: true,
message: '图片插入成功',
type: 'success'
});
this.onEditorRefresh();
}, },
// //
leftAndRightScroll() { leftAndRightScroll() {
@ -274,13 +265,7 @@ export default {
const offsetWidth = this.$el.offsetWidth; const offsetWidth = this.$el.offsetWidth;
const maxLeft = offsetWidth - menuMinWidth; const maxLeft = offsetWidth - menuMinWidth;
const left = e.clientX - offsetLeft; const left = e.clientX - offsetLeft;
this.mouseLeft = Math.min(maxLeft, left);
if (left > maxLeft) {
this.mouseLeft = maxLeft;
} else {
this.mouseLeft = left;
}
this.mouseTop = e.clientY + 10; this.mouseTop = e.clientY + 10;
this.rightClickMenuVisible = true; this.rightClickMenuVisible = true;
}, },