king
2021-10-21 1da6506bf58270bacc2a4345002c6b082835580e
src/tabviews/zshare/mutilform/mkRadio/index.jsx
@@ -2,8 +2,6 @@
import PropTypes from 'prop-types'
import { Radio } from 'antd'
import './index.scss'
class MKRadio extends Component {
  static propTpyes = {
    config: PropTypes.object,
@@ -31,7 +29,7 @@
    return (
      <Radio.Group defaultValue={defaultValue} disabled={config.readonly} onChange={this.onChange}>
        {config.options.map(option => <Radio key={option.key} value={option.value}>{option.label}</Radio>)}
        {config.options.map(option => <Radio key={option.key} disabled={option.$disabled} value={option.value}>{option.label}</Radio>)}
      </Radio.Group>
    )
  }