提交 c0d2808c authored 作者: 钟是志's avatar 钟是志

wangEditor组件修改

上级 39f525e3
......@@ -1865,8 +1865,8 @@ export default class tableCom extends Component {
);
break;
case 'WangEditor':
cm = (<div dangerouslySetInnerHTML={{__html: obj[dataColumn.base52]}}>
cm = (<div dangerouslySetInnerHTML={{__html: `<div class="wangEditorHtml">${obj[dataColumn.base52]}</div>`}}>
</div>);
break;
case 'TextArea':
......
......@@ -44,6 +44,7 @@ export default function Index({
editor.config.focus = focus;
}
editor.config.onchange = function(newHtml) {
console.log(newHtml);
onChangeValue(newHtml);
};
......@@ -62,7 +63,7 @@ export default function Index({
editor.config.pasteFilterStyle = false; // 关闭粘贴样式的过滤
editor.config.uploadImgMaxSize = 3 * 1024 * 1024; // 上传的图片不能大于3M
editor.config.uploadImgMaxLength = 1; // 一次最多上传 1 个图片
editor.config.showFullScreen = false;
editor.config.showFullScreen = false; // 关闭全局变量
editor.config.menus = menus || [
// 配置菜单
'head',
......@@ -92,11 +93,13 @@ export default function Index({
editor.create();
console.log(value);
if (value && value.indexOf('wangEditorHtml') > -1) {
editor.txt.html(value);
} else {
editor.txt.html('<div class="wangEditorHtml">' + value + '</div>');
}
editor.txt.html(value);
// if (value && value.indexOf('wangEditorHtml') > -1) {
// editor.txt.html(value);
// } else {
// editor.txt.html('<div class="wangEditorHtml">' + value + '</div>');
// }
return () => {
console.log('是否销毁了editor');
......
......@@ -16,7 +16,9 @@ function Index({ onChange, value, otherProps, dataColumn, disabled, json, uuid }
return null;
}
if(disabled){
return <div dangerouslySetInnerHTML={{__html: value}}></div>
return <div dangerouslySetInnerHTML={{__html: `<div class="wangEditorHtml">${value}</div>`}}>
</div>
}
return (
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论