diff --git a/src/components/Tinymce/index.vue b/src/components/Tinymce/index.vue
index bde7af50..8993d278 100644
--- a/src/components/Tinymce/index.vue
+++ b/src/components/Tinymce/index.vue
@@ -211,10 +211,7 @@ export default {
window.tinymce.get(this.tinymceId).getContent()
},
imageSuccessCBK(arr) {
- const _this = this
- arr.forEach(v => {
- window.tinymce.get(_this.tinymceId).insertContent(``)
- })
+ arr.forEach(v => window.tinymce.get(this.tinymceId).insertContent(``))
}
}
}