import React, { Component } from 'react' import PropTypes from 'prop-types' import { connect } from 'react-redux' import wangEditor from 'wangeditor' import { getResParams } from '../../../actions/addInterface.js' @connect( state => { return { resParams: state.addInterface.resParams } }, { getResParams } ) class ResParams extends Component { static propTypes = { resParams: PropTypes.string, getResParams: PropTypes.func } constructor(props) { super(props) } componentDidMount () { var E = wangEditor var editor = new E('#res-cover') editor.customConfig.menus = [] editor.customConfig.onchange = html => { this.props.getResParams(html) } editor.create() } render () { return (
θΏ”ε›žε‚ζ•° :
) } } export default ResParams