import React, { Component } from "react"; import { Form, Button, Radio, Modal, Input, message, Switch } from "antd"; import { knowledgeList, auditList, addDeductionList, } from "@/dataDic.js"; /** * 知识产权 */ const RadioButton = Radio.Button; const RadioGroup = Radio.Group; const radioStyle = { display: 'block', height: '30px', lineHeight: '30px', }; const FormItem = Form.Item; class Property extends Component { constructor(props) { super(props); this.state = { } } componentDidMount() { } componentWillUnmount() { } componentWillReceiveProps(nextProps) { // const { patentStatus } = this.props // if (patentStatus != null) { // this.setState({ // isProperty: 1, // }) // } } render() { const { isCreat = false, isProperty, patentStatus, labelCol = 5, wrapperCol = 16 } = this.props return (