king
2021-11-13 182445f68ca03beb95a90e57867f356fe155126b
src/menu/components/table/edit-table/index.jsx
@@ -201,11 +201,9 @@
  }
  addSearch = () => {
    let card = fromJS(this.state.card).toJS()
    const { card } = this.state
    card.search.push({uuid: Utils.getuuid(), focus: true, label: 'label', type: 'text', match: '='})
    this.setState({card})
    MKEmitter.emit('plusSearch', card.uuid, {uuid: Utils.getuuid(), focus: true, label: 'label', type: 'text', match: '='}, 'simple')
  }
  addButton = () => {
@@ -309,7 +307,7 @@
    return (
      <div className="menu-normal-table-edit-box" style={_style} onClick={this.clickComponent} id={card.uuid}>
        <NormalHeader defaultshow="hidden" hideSearch="true" config={card} updateComponent={this.updateComponent}/>
        <NormalHeader hideSearch="true" config={card} updateComponent={this.updateComponent}/>
        <Popover overlayClassName="mk-popover-control-wrap" mouseLeaveDelay={0.2} mouseEnterDelay={0.2} content={
          <div className="mk-popover-control">
            <Icon className="plus" title="添加列" onClick={this.addColumns} type="plus" />