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

iframe页面的Modal 直接从父级获取

上级 dc6ec632
......@@ -20,6 +20,9 @@ export default class index extends Component {
}
showModal = () => {
if(window?.parent?.iframeParentComponent){
return false;
}
this.setState({
visible: true,
});
......@@ -73,12 +76,12 @@ export default class index extends Component {
<>
{isShow ? (
<Popconfirm
title='该附件支持预览,是否预览?'
title='查看附件'
onConfirm={this.download}
okText='下载'
onCancel={this.showModal}
cancelText='预览'>
cancelText={ window?.parent?.iframeParentComponent ? '取消' : '预览'}>
{isImg ? (
<img
ref={(node)=>{ this.imageDom = node;}}
......@@ -104,7 +107,7 @@ export default class index extends Component {
visible &&
<Modal
title={pathName}
visible={visible}
visible={true}
width={1200}
destroyOnClose
centered={true}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论