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

30332 通知书模板优化

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