提交 6c813f18 authored 作者: 钟是志's avatar 钟是志

28521 退役大学生评优管理/在校退役大学生评优审核,去掉审核签名--需求里面没有-同bug28520(admin,cdzysoft@654321)

上级 c4363446
...@@ -235,23 +235,37 @@ class DetailSplit extends Component { ...@@ -235,23 +235,37 @@ class DetailSplit extends Component {
dispatch({ dispatch({
type: 'emailorphone/GetLogo', type: 'emailorphone/GetLogo',
payload: { payload: {
configKeys: ['isCloseUserDetail', 'isCloseFlowPath', 'isAllPrint'], configKeys: ['isCloseUserDetail', 'isCloseFlowPath', 'isAllPrint', 'closeAutoSign'],
}, },
callback: val => { callback: val => {
const closeAutoSign = !!(val[3] && val[3].configValue === 'true');
this.setState({ this.setState({
isCloseUserDetail: !!(val[0] && val[0].configValue === 'true'), isCloseUserDetail: !!(val[0] && val[0].configValue === 'true'),
isAllPrint: !!(val[2] && val[2].configValue === 'true'),
closeAutoSign,
}); });
if(!closeAutoSign){
/**
* 获取设置的数据
*/
this.props.dispatch({
type: 'UserSetCenterApi/queryUserSet',
payload: {},
callback: val => {
this.setState({
setData: val,
});
},
});
}
if (val[1]?.configValue) { if (val[1]?.configValue) {
sessionStorage.setItem( sessionStorage.setItem(
'isCloseFlowPath', 'isCloseFlowPath',
val[1]?.configValue === 'true' ? JSON.stringify(true) : JSON.stringify(false), val[1]?.configValue === 'true' ? JSON.stringify(true) : JSON.stringify(false),
); );
} }
if (val[2]?.configValue === 'true') {
this.setState({
isAllPrint: true,
});
}
}, },
}); });
if (getToken()) { if (getToken()) {
...@@ -262,18 +276,7 @@ class DetailSplit extends Component { ...@@ -262,18 +276,7 @@ class DetailSplit extends Component {
}); });
} }
} }
/**
* 获取设置的数据
*/
this.props.dispatch({
type: 'UserSetCenterApi/queryUserSet',
payload: {},
callback: val => {
this.setState({
setData: val,
});
},
});
}; };
...@@ -424,6 +427,7 @@ class DetailSplit extends Component { ...@@ -424,6 +427,7 @@ class DetailSplit extends Component {
setData, setData,
isSign, isSign,
isAllPrint, isAllPrint,
closeAutoSign, // 28521 退役大学生评优管理/在校退役大学生评优审核,去掉审核签名
} = this.state; } = this.state;
const { showPrint } = this.props; const { showPrint } = this.props;
const isCloseFlowPath = sessionStorage.getItem('isCloseFlowPath') const isCloseFlowPath = sessionStorage.getItem('isCloseFlowPath')
...@@ -757,7 +761,7 @@ class DetailSplit extends Component { ...@@ -757,7 +761,7 @@ class DetailSplit extends Component {
<ChildTaskModel data={item.childTaskModel} /> <ChildTaskModel data={item.childTaskModel} />
)} )}
{isSign || item.taskVariable?.sign ? ( {(isSign || item.taskVariable?.sign) && !closeAutoSign ? (
<img <img
style={{ style={{
position: 'absolute', position: 'absolute',
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论