| | |
| | | } |
| | | |
| | | getCards = () => { |
| | | const { display, width, options, fields, ratio, picratio, backgroundColor } = this.props.config |
| | | const { display, width, options, fields, ratio, picratio, backgroundColor, field, labelShow } = this.props.config |
| | | |
| | | let _options = [] |
| | | let _fields = fields || [] |
| | |
| | | return <Col span={width}> |
| | | <div className="card-cell no-margin-bottom" style={style}> |
| | | <div className="bg-mask" style={_style}></div> |
| | | <span style={{color: '#000000', fontSize: '14px', height: '21px'}}>示例</span> |
| | | <span style={{color: '#000000', fontSize: '14px', height: '21px'}}>示例 {labelShow === 'false' ? field : ''}</span> |
| | | </div> |
| | | </Col> |
| | | } |