king
2021-04-15 62e599832e5265851c962ec7303abf29064fafe1
src/tabviews/custom/components/chart/antv-scatter/index.jsx
@@ -2,7 +2,6 @@
import PropTypes from 'prop-types'
import { is, fromJS } from 'immutable'
import { Chart } from '@antv/g2'
import { connect } from 'react-redux'
import { Spin, Empty, notification } from 'antd'
import moment from 'moment'
@@ -10,7 +9,6 @@
import Utils from '@/utils/utils.js'
import asyncComponent from './asyncButtonComponent'
import UtilsDM from '@/utils/utils-datamanage.js'
import { modifyTabview } from '@/store/action'
import MKEmitter from '@/utils/events.js'
import './index.scss'
@@ -426,17 +424,4 @@
  }
}
const mapStateToProps = (state) => {
  return {
    tabviews: state.tabviews,
    permMenus: state.permMenus,
  }
}
const mapDispatchToProps = (dispatch) => {
  return {
    modifyTabview: (tabviews) => dispatch(modifyTabview(tabviews))
  }
}
export default connect(mapStateToProps, mapDispatchToProps)(ScatterChart)
export default ScatterChart