import React from 'react'; import { WeaTab } from 'ecCom'; import "./index.less"; export default class CustomTab extends React.Component { constructor(props) { super(props); this.state = { selectedKey: "0" } } render() { return (
{ this.props.topTab && { this.setState({selectedKey: v}) this.props.onChange(v); }} /> } { this.props.leftOperation && this.props.leftOperation }
{ this.props.searchOperationItem }
) } }