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

bug修改

上级 96838946
...@@ -3,7 +3,9 @@ import { uaaRequest } from '@/webPublic/one_stop_public/utils/request'; ...@@ -3,7 +3,9 @@ import { uaaRequest } from '@/webPublic/one_stop_public/utils/request';
export const getHead = (payload, callback) => { export const getHead = (payload, callback) => {
uaaRequest('/DataColumnApi/getHeaderList', payload).then(res => { uaaRequest('/DataColumnApi/getHeaderList', payload).then(res => {
if (!res) return; if (!res) return;
if (callback) callback(res); if (callback) {
callback(res);
}
}); });
}; };
......
...@@ -2,6 +2,7 @@ import React, { Fragment, Component } from 'react'; ...@@ -2,6 +2,7 @@ import React, { Fragment, Component } from 'react';
import styles from './index.less'; import styles from './index.less';
import ButtonDiy from '@/baseComponent/ButtonDiy'; import ButtonDiy from '@/baseComponent/ButtonDiy';
import Shell from '@/baseComponent/Shell'; import Shell from '@/baseComponent/Shell';
import { ModalConfirm } from '@/baseComponent/Modal';
export default class FormatSetting extends Component { export default class FormatSetting extends Component {
...@@ -49,6 +50,14 @@ export default class FormatSetting extends Component { ...@@ -49,6 +50,14 @@ export default class FormatSetting extends Component {
} }
initConfig = () => {
ModalConfirm('您确定初始化打印录取通知书格式吗?',{
onOk: ()=>{
this.props.initConfig();
},
});
};
render() { render() {
const { bgImage, formatSettingObject, saveConfig } = this.props; const { bgImage, formatSettingObject, saveConfig } = this.props;
const configInfo = Object.keys(formatSettingObject); const configInfo = Object.keys(formatSettingObject);
...@@ -56,10 +65,12 @@ export default class FormatSetting extends Component { ...@@ -56,10 +65,12 @@ export default class FormatSetting extends Component {
return <Fragment> return <Fragment>
<Shell styleShell={{marginTop: '0',marginBottom: '20px'}}> <Shell styleShell={{marginTop: '0',marginBottom: '20px'}}>
<div style={{ height: '54px', padding: '12px 0 12px 12px' }}> <div style={{ height: '54px', padding: '12px 0 12px 12px' }}>
<ButtonDiy <ButtonDiy name="保存"
name="保存" className="primary"
className="primary" handleClick={saveConfig}
handleClick={saveConfig} />
<ButtonDiy name={'初始化格式'}
handleClick={this.initConfig}
/> />
</div> </div>
</Shell> </Shell>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论