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

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

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