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

附件上传 预览图片的样式修改 姚鑫国说的 2021年11月15日

上级 3eed2fd3
......@@ -96,8 +96,8 @@ export default class index extends Component {
{isImg ? (
<img
style={{
width: width ? width : '100%',
height: height ? height : '100%',
width: width ? width : '100px',
height: height ? height : 'auto',
}}
src={path}
alt={pathName}
......
......@@ -108,7 +108,7 @@ class UploadCom extends React.Component {
<li key={f.path} className={styles.preview_img}>
<div className={styles.preview_div}>
<img
style={{ width: 150, height: 'auto' }}
style={{ width: '100px', height: 'auto' }}
className={styles.img}
src={queryApiActionPath() + f.path}
/>
......
......@@ -2023,13 +2023,17 @@ export default class tableCom extends Component {
if (get === 'web' && !this.props.isPrint) {
return (
<li key={index2}>
<FilePreview path={queryApiActionPath() + f.path} pathName={f.name} />
<FilePreview path={queryApiActionPath() + f.path}
pathName={f.name}
type={'UploadCom'}/>
</li>
);
}
return (
<li key={index2}>
<a target="_blank" key={f.path} href={queryApiActionPath() + f.path}>
<a target="_blank"
key={f.path}
href={queryApiActionPath() + f.path}>
{f.name}
</a>
</li>
......@@ -2055,7 +2059,7 @@ export default class tableCom extends Component {
if (get === 'web' || !this.props.isPrint) {
return (
<li key={index2}>
<FilePreview path={queryApiActionPath() + f.path} pathName={f.name} />
<FilePreview path={queryApiActionPath() + f.path} pathName={f.name} type={'UploadCom'}/>
</li>
);
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论