You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
724 B
40 lines
724 B
import React, { useEffect, useState } from 'react'
|
|
import { Spin, Popconfirm, message, Button, Input } from 'antd'
|
|
import { connect } from 'react-redux'
|
|
import ProTable from '@ant-design/pro-table'
|
|
import moment from 'moment'
|
|
import ReactEcharts from 'echarts-for-react'
|
|
import PerfectScrollbar from 'perfect-scrollbar'
|
|
import '../style.less'
|
|
|
|
|
|
const Bottom = props => {
|
|
const { dispatch, clientHeight, clientWidth, actions } = props
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
<>
|
|
|
|
</>
|
|
)
|
|
}
|
|
|
|
function mapStateToProps(state) {
|
|
const { auth, global } = state
|
|
return {
|
|
clientHeight: global.clientHeight,
|
|
clientWidth: global.clientWidth,
|
|
actions: global.actions,
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps)(Bottom)
|
|
|