/* *@props perInfo 资格证信息 */ import React, { Component } from 'react'; import { Row, Col, Form, Input } from 'antd'; import { formItemLayout } from './formLayout'; // @withRouter export default class Submitted extends Component { constructor(props, context) { super(props, context); this.state = { }; } componentDidMount() { } render() { if (!this.props.perInfo.cerNo) { return ''; } return ( <>

资格证信息

{/* {getFieldDecorator('resident', { initialValue: '' })( )} */} {/* {getFieldDecorator('resident', { initialValue: this.state.perInfo.cerNo })( )} */} {/* {getFieldDecorator('resident', { initialValue: '' })( )} */} {/* */} {this.props.perInfo.name}-电子保安员证 ); } }