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

打印修改

上级 f49c32e2
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* 在up 的时候 更新元素dom的新位置到props * 在up 的时候 更新元素dom的新位置到props
* */ * */
import React, { Fragment, Component } from 'react'; import React, { Component } from 'react';
import styles from './index.less'; import styles from './index.less';
import { imageStyleAll, A4Height, A4Width } from './ViewPrint/config'; import { imageStyleAll, A4Height, A4Width } from './ViewPrint/config';
......
...@@ -68,12 +68,13 @@ const normalTextRender = (text, config) => { ...@@ -68,12 +68,13 @@ const normalTextRender = (text, config) => {
}; };
if (config.mark && text.indexOf(config.mark) > -1) { // 换行分隔符 if (config.mark && text.indexOf(config.mark) > -1) { // 换行分隔符
text = text.split(config.mark); text = text.split(config.mark);
let length = text.length;
return <span style={style}> return <span style={style}>
{text.map((x) => { {text.map((x, index) => {
return <p return <p
key={x} key={x}
style={{ marginBottom: '0' }}> style={{ marginBottom: '0' }}>
{x} {x} {length > index + 1 ? config.mark : ''}
</p>; </p>;
})} })}
</span>; </span>;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论