import React,{ Component } from 'react'; import './index.less'; import TabelContent from '../../../../common/tabelContent' import DetailedList from './detailedList'; class ReceivablesStatistics extends Component{ constructor(props) { super(props); this.state={ columns: [ { title: "序号", dataIndex: "key", key: "key", width: 120, }, { title: "省份", dataIndex: "provinceName", key: "provinceName", width: 120, }, { title: "高新总数", dataIndex: "quantity", key: "quantity", width: 120, className: 'projectTable', onCellClick :(record, event)=>{ event.stopPropagation(); this.setState({ visible:true, recordInfor:record }) } }, { title: "已通过高新数", dataIndex: "pass", key: "pass", width: 120, className: 'projectTable', onCellClick :(record, event)=>{ event.stopPropagation(); this.setState({ visible:true, recordInfor:record }) } }, { title: "已签回", dataIndex: "signBacks", key: "signBacks", width: 120, className: 'projectTable', onCellClick :(record, event)=>{ event.stopPropagation(); this.setState({ visible:true, recordInfor:record }) } }, { title: "未通过高新数", dataIndex: "notPass", key: "notPass", width: 120, className: 'projectTable', onCellClick :(record, event)=>{ event.stopPropagation(); this.setState({ visible:true, recordInfor:record }) } }, ], searchConfig:{} } } searchList(){ let arr = [ { type:'departmentSelect', dataKey:'depId', placeholder:'请选择部门' }, { type:'times', title:'时间', dataKey:['startDate','endDate'], }, ] return arr; } render() { return (