import React,{Component} from 'react'; import {message, Modal, Spin, Table} from "antd"; import PropTypes from 'prop-types'; import $ from "jquery/src/ajax"; class CustomerDetails extends Component{ constructor(props) { super(props); this.state={ loading:false, columns: [{ title: '客户名称', dataIndex: 'name', key: 'name' }, { title: '来源', dataIndex: 'sourceName', key: 'sourceName' }, { title: '联系人', dataIndex: 'contacts', key: 'contacts' }, { title: '联系人电话', dataIndex: 'contactMobile', key: 'contactMobile' }, { title: '创建时间', dataIndex: 'createTime', key: 'createTime', }, { title: '跟进时间', dataIndex: 'followTime', key: 'followTime', }], pagination: { defaultCurrent: 1, defaultPageSize: 10, showQuickJumper: true, pageSize: 10, onChange: function(page) { this.loadData(page); }.bind(this), showTotal: function(total) { return '共' + total + '条数据'; } } } this.loadData = this.loadData.bind(this); } componentDidMount() { this.loadData(); } loadData(pageNo) { this.setState({ loading:true }) $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context +"/api/admin/customer/selectAdminCustomerList", data: { pageNo:pageNo || 1, pageSize:this.state.pagination.pageSize, aid:this.props.aid, type:this.props.type, //0 所有 1新增 2领取 3已签 4面谈 startTime:this.props.startTime, endTime:this.props.endTime, }, success: function(data) { let theArr = []; if(data.error.length || data.data.list == "") { if(data.error && data.error.length) { message.warning(data.error[0].message); }; } else { for (let i = 0; i < data.data.list.length; i++) { let thisdata = data.data.list[i]; thisdata.key = i; theArr.push(thisdata); }; this.state.pagination.current = pageNo; this.state.pagination.total = data.data.totalCount; }; if(!data.data.list.length) { this.state.pagination.current = 0 this.state.pagination.total = 0 } this.setState({ dataSource: theArr, pagination: this.state.pagination, }); }.bind(this), }).always(function() { this.setState({ loading: false }); }.bind(this)); } render() { return (