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

30332 通知书模板优化

上级 494853d7
...@@ -104,8 +104,14 @@ export default class FormatSetting extends Component { ...@@ -104,8 +104,14 @@ export default class FormatSetting extends Component {
}; };
render() { render() {
const { bgImage, formatSettingObject, saveConfig } = this.props; const { bgImage, formatSettingObject, saveConfig, pageConfiguration } = this.props;
console.log(formatSettingObject);
console.log(pageConfiguration, 'pageConfiguration');
let bgImageStyle = {};
if(pageConfiguration && pageConfiguration.width){
bgImageStyle.width = pageConfiguration.width + 'cm';
bgImageStyle.height = pageConfiguration.height + 'cm';
}
return ( return (
<Fragment> <Fragment>
<Shell <Shell
...@@ -128,8 +134,7 @@ export default class FormatSetting extends Component { ...@@ -128,8 +134,7 @@ export default class FormatSetting extends Component {
src={bgImage} src={bgImage}
id={'dropZone'} id={'dropZone'}
draggable={false} draggable={false}
style={{maxWidth: '21cm'}} style={bgImageStyle}
// TODO 2022年10月25日 要从配置项里面来
className={styles.bgimage} className={styles.bgimage}
alt={'背景图'} alt={'背景图'}
/> />
...@@ -139,7 +144,7 @@ export default class FormatSetting extends Component { ...@@ -139,7 +144,7 @@ export default class FormatSetting extends Component {
draggable={true} draggable={true}
className={styles.inSideItem} className={styles.inSideItem}
key={index} key={index}
id={x.name} id={x.name + ''}
style={x.style}> style={x.style}>
{x.name} {x.name}
</div> </div>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论