|
@@ -391,6 +391,7 @@ import importSemantics from '../components/importSemantics.vue';
|
|
|
export default {
|
|
|
mixins:[mixinMsg,reportMixin,reportApproveConfig],
|
|
|
data() {
|
|
|
+ let that = this;
|
|
|
return {
|
|
|
//批量导入图表
|
|
|
importChartNum:0,//批量导入图表的数量 如果大于0则说明在加载
|
|
@@ -497,7 +498,22 @@ export default {
|
|
|
placeholderText:localStorage.getItem('i18n') == 'en' ? 'Please Overview' : '请输入overview',
|
|
|
language: localStorage.getItem('i18n') == 'en' ? 'en' : "zh_cn",
|
|
|
//允许粘贴的样式
|
|
|
- pasteAllowedStyleProps: ['font-family', 'font-size', 'color']
|
|
|
+ pasteAllowedStyleProps: ['font-family', 'font-size', 'color'],
|
|
|
+ events:{
|
|
|
+ "paste.before":function(e,editor){
|
|
|
+ let content = e.clipboardData.getData('text/html');
|
|
|
+ // console.log(content)
|
|
|
+ var tempDiv = document.createElement('div');
|
|
|
+ tempDiv.innerHTML = content;
|
|
|
+ var iframes = tempDiv.querySelectorAll('iframe');
|
|
|
+ const srcArr = Array.from(iframes).map(i=>i.src)
|
|
|
+ //console.log(srcArr);
|
|
|
+ if(srcArr.filter(i=>!i.includes(that.$setting.dynamicOutLinks.ChartViewUrl)).length){
|
|
|
+ that.$message.warning("粘贴内容含有外链,请核对内容或粘贴纯文本")
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
showDSFB:false,//显示定时发布弹窗
|