mirror of
https://github.com/doocs/md.git
synced 2024-11-25 03:18:36 +08:00
Merge branch 'feature-rebuild' of github.com:doocs/md into feature-rebuild
This commit is contained in:
commit
8233c9aba3
@ -184,8 +184,14 @@ export default {
|
|||||||
},
|
},
|
||||||
// 图片上传结束
|
// 图片上传结束
|
||||||
uploaded(response) {
|
uploaded(response) {
|
||||||
if (response) {
|
if (!response || !response.success) {
|
||||||
if (response.success) {
|
this.$message({
|
||||||
|
showClose: true,
|
||||||
|
message: '上传图片未知异常',
|
||||||
|
type: 'error'
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
// 上传成功,获取光标
|
// 上传成功,获取光标
|
||||||
const cursor = this.editor.getCursor();
|
const cursor = this.editor.getCursor();
|
||||||
const imageUrl = response.data;
|
const imageUrl = response.data;
|
||||||
@ -198,21 +204,6 @@ export default {
|
|||||||
type: 'success'
|
type: 'success'
|
||||||
});
|
});
|
||||||
this.onEditorRefresh();
|
this.onEditorRefresh();
|
||||||
} else {
|
|
||||||
// 上传失败
|
|
||||||
this.$message({
|
|
||||||
showClose: true,
|
|
||||||
message: response.message,
|
|
||||||
type: 'error'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.$message({
|
|
||||||
showClose: true,
|
|
||||||
message: '上传图片未知异常',
|
|
||||||
type: 'error'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
// 左右滚动
|
// 左右滚动
|
||||||
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;
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user