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

3604 多人并行 【1.0低代码】审核页面新增,上一页下一页功能

上级 1cc5d09f
...@@ -53,8 +53,9 @@ export default class Detail extends Component { ...@@ -53,8 +53,9 @@ export default class Detail extends Component {
getWaitInfos() { getWaitInfos() {
const { state } = this.props.location; const { state } = this.props.location;
const { from = '' } = this.props;
const { code } = this.state; const { code } = this.state;
if (state.activeType === '待处理' && getIsBei_Dian() && code) { if (state && state.activeType === '待处理' && getIsBei_Dian() && code && from === 'ActiveMenuComponent.js') {
// 后续再考虑 开放给其他学校. // 后续再考虑 开放给其他学校.
getWaitIds({ getWaitIds({
appId: state.workId, // appId: state.workId, //
......
...@@ -93,7 +93,7 @@ function ActiveMenuComponent({ routerConfig, ...otherProps }) { ...@@ -93,7 +93,7 @@ function ActiveMenuComponent({ routerConfig, ...otherProps }) {
Res = <AuditMerge {...otherProps} routerConfig={routerConfig}/>; Res = <AuditMerge {...otherProps} routerConfig={routerConfig}/>;
break; break;
case 'Detail': // 详情 case 'Detail': // 详情
Res = <Detail {...otherProps} />; Res = <Detail {...otherProps} from={'ActiveMenuComponent.js'}/>;
break; break;
default: default:
break; break;
......
...@@ -50,7 +50,7 @@ export default class GetDetail extends Component { ...@@ -50,7 +50,7 @@ export default class GetDetail extends Component {
state: { state: {
id, id,
code, code,
taskId: location.state.taskId || undefined, taskId: location.state && location.state.taskId || undefined,
fromIframe: false, fromIframe: false,
}, },
}; };
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论