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

打印bug修改

上级 6f4e78f4
......@@ -120,8 +120,14 @@ export default class Index extends Component {
render() {
const {
backgroundUrl,
configAll: { config },
configAll: { config, wide, high, },
} = this.props;
const imageStyle = {
height: high || '902px',
width: wide || 'auto',
};
return (
<div className={styles.outSideDiv}>
<div
......@@ -130,12 +136,17 @@ export default class Index extends Component {
}}
style={{
padding: '12px',
...imageStyle,
}}>
<img
src={backgroundUrl}
id={'dropZone'}
draggable={false}
className={styles.bgimage}
style={{
width: 'auto',
height: '100%',
}}
alt={'背景图'}
/>
{config.map((item, index) => {
......
......@@ -55,6 +55,13 @@ export default class ViewPrint extends Component {
console.error(`${x.queryUrl}接口报错或者没有返回数据`);
return false;
}
for (let item of viewData) {
for (let x in item) {
if (item[x] === null || item[x] === 'null') {
item[x] = '';
}
}
}
this.setState({
viewData,
});
......@@ -197,7 +204,7 @@ export default class ViewPrint extends Component {
<div
ref={(node) => (this.content = node)}
style={{
display: showWindowPrint || true ? 'block' : 'none',
display: showWindowPrint ? 'block' : 'none',
}}>
{viewData.map((info, index) => {
return (
......@@ -217,7 +224,7 @@ export default class ViewPrint extends Component {
style={{
width: 'auto',
height: '100%',
}} />
}}/>
) : null}
{this.detailDom(info)}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论