| | |
| | | import React, {Component} from 'react' |
| | | import PropTypes from 'prop-types' |
| | | import { fromJS } from 'immutable' |
| | | import { Icon } from 'antd' |
| | | |
| | | import MkIcon from '@/components/mk-icon' |
| | | import Utils from '@/utils/utils.js' |
| | | import ColumnForm from './columnform' |
| | | import asyncComponent from '@/utils/asyncComponent' |
| | |
| | | editable: true, |
| | | required: false, |
| | | width: '35%', |
| | | render: (text, record) => record.icon ? <Icon type={record.icon}/> : '' |
| | | render: (text, record) => record.icon ? <MkIcon type={record.icon}/> : '' |
| | | } |
| | | ] |
| | | } |