提交 c3381429 authored 作者: 徐立's avatar 徐立

修复图片预览大小

上级 5d2e2cb0
......@@ -34,7 +34,7 @@ export default class index extends Component {
window.open(path, '_blank');
};
render() {
let { path, pathName } = this.props;
let { path, pathName, width, height } = this.props;
const { visible } = this.state;
let isShow =
pathName?.indexOf('.pdf') !== -1 ||
......@@ -95,7 +95,14 @@ export default class index extends Component {
cancelText="预览"
>
{isImg ? (
<img src={path} alt={pathName} />
<img
style={{
width: width ? width : '100%',
height: height ? height : '100%',
}}
src={path}
alt={pathName}
/>
) : (
<a target="_blank" href={path}>
{pathName}
......
......@@ -2101,6 +2101,8 @@ export default class tableCom extends Component {
<FilePreview
path={config.httpServer + obj[dataColumn.base52]}
pathName={obj[dataColumn.base52]}
width={json.width}
height={json.height}
/>
) : (
<img
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论