Commit 99421d3c authored by 卢均锐's avatar 卢均锐

fix: [418] 新增业务请款多了个字符

parent 35ce47d3
......@@ -686,6 +686,7 @@ const Add = () => {
no={_title}
tabLink={_tabs}
effect={_returnTopButton()}
hideBar={true}
components={
<Form
{...layout}
......
......@@ -23,6 +23,8 @@ export interface IProps {
effect?: React.ReactNode,
/** 页面的组件 */
components?: React.ReactNode,
/** 隐藏中间单号标题中间的分隔符 */
hideBar?: boolean,
}
const PeripheralLayout: React.FC<IProps> = (props: any) => {
......@@ -32,6 +34,7 @@ const PeripheralLayout: React.FC<IProps> = (props: any) => {
tabLink,
effect,
components,
hideBar
} = props;
const dataSource = useContext(Context)
......@@ -72,7 +75,7 @@ const PeripheralLayout: React.FC<IProps> = (props: any) => {
<ArrowLeftOutlined className={style.goBack} onClick={() => history.goBack()} />
<span className={style.titleContext}>
{detail ? detail : dataSource.details}
&nbsp;|&nbsp;
{hideBar ? '' : ' | '}
{no}
</span>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment