king
2023-05-15 8d7c3eed8bdac1e77c8de90a3227d801708c358e
src/menu/components/table/normal-table/columns/index.jsx
@@ -47,7 +47,8 @@
    return !is(fromJS(this.props.column), fromJS(nextProps.column)) ||
      !is(fromJS(this.props.fields), fromJS(nextProps.fields)) ||
      this.props.index !== nextProps.index
      this.props.index !== nextProps.index ||
      window.GLOB.columnId === nextProps.column.uuid || window.GLOB.precolumnId === nextProps.column.uuid
  }
  render() {
@@ -58,6 +59,10 @@
      if (column.Width) {
        style.width = column.Width
        style.minWidth = column.Width
      }
      if (window.GLOB.columnId === column.uuid) {
        style.color = '#1890ff'
      }
      return connectDragSource(
@@ -84,6 +89,10 @@
      if (column.Width) {
        style.width = column.Width
        style.minWidth = column.Width
      }
      if (window.GLOB.columnId === column.uuid) {
        style.color = '#1890ff'
      }
      return (
@@ -330,7 +339,7 @@
        config.action = config.action.filter(item => item.uuid !== btn.uuid)
        setTimeout(() => {
          MKEmitter.emit('revert', config.uuid)
          MKEmitter.emit('revertBtn', config.uuid)
        }, 200)
      }
@@ -410,6 +419,9 @@
      col.elements = card.type === 'action' ? (card.elements || []) : []
    }
    window.GLOB.precolumnId = window.GLOB.columnId || ''
    window.GLOB.columnId = col.uuid
    this.setState({card: null})
    this.updateCol(col)
  }