import React from 'react'; import { Radio, Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker, Modal, Upload } from 'antd'; import ajax from 'jquery/src/ajax/xhr.js'; import $ from 'jquery/src/ajax'; import moment from 'moment'; import './myClient.less'; import TechAchievementDesc from './myClientDesc.jsx'; import { achievementCategoryList, techAuditStatusList,cityArr,customerStatus } from '../../dataDic.js'; import { beforeUploadFile, companySearch, getAchievementCategory, getSearchUrl, getTechAuditStatus,getcustomerTyp,getcityArr,getcustomerStatue,getCompanyIntention,getfllowSituation} from '../../tools.js'; import BatchImport from './batchImport'; const AchievementList = React.createClass({ loadData(pageNo, apiUrl) { this.state.data = []; this.setState({ loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url:globalConfig.context + '/api/admin/customer/searchCustomerList', data: { pageNo: pageNo || 1, pageSize: this.state.pagination.pageSize, companyName: this.state.companyName, //名称 customerTyp: this.state.customerTyp, //客户类型 province:this.state.province,//地区 customerStatue:this.state.customerStatue,//客户状态 customerName:this.state.customerName,//联系人姓名 adminName:this.state.adminName,//跟单人 //releaseDateStartDate: this.state.releaseDate[0], //releaseDateEndDate: this.state.releaseDate[1], }, success: function (data) { console.log(data) let theArr = []; if (!data.data || !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]; theArr.push({ key: i, id: thisdata.id, companyName:thisdata.companyName, customerTyp:thisdata.customerTyp, province:thisdata.province, customerName:thisdata.customerName, telNum:thisdata.telNum, customerStatue:thisdata.customerStatue, companyIntention:thisdata.companyIntention, fllowSituation:thisdata.fllowSituation, adminName:thisdata.adminName }); }; this.state.pagination.current = data.data.pageNo; this.state.pagination.total = data.data.totalCount; }; this.setState({ dataSource: theArr, pagination: this.state.pagination }); }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this)); }, showModal(){ this.setState({ visible: true, }); }, handleOk(e){ this.setState({ visible: false, }); }, handleCancel(e){ this.setState({ visible: false, }); }, getInitialState() { return { visible: false , searchMore: true, searchType: 0, validityPeriodDate: [], releaseDate: [], selectedRowKeys: [], selectedRows: [], loading: false, pagination: { defaultCurrent: 1, defaultPageSize: 10, showQuickJumper: true, pageSize: 10, onChange: function (page) { this.loadData(page); }.bind(this), showTotal: function (total) { return '共' + total + '条数据'; } }, columns: [ { title: '公司名称', dataIndex: 'companyName', key: 'companyName', }, { title: '客户类型', dataIndex: 'customerTyp', key: 'customerTyp', render: text => { return getcustomerTyp(text); } }, { title: '地区', dataIndex: 'province', key: 'province', render: text => { return getcityArr(text); } }, { title: '联系人姓名', dataIndex: 'customerName', key: 'customerName', }, { title: '手机号', dataIndex: 'telNum', key:'telNum', }, { title: '客户状态', dataIndex: 'customerStatue', key: 'customerStatue', render: text => { return getcustomerStatue(text) } }, { title: '意向服务', dataIndex: 'companyIntention', key: 'companyIntention', render: text => { return getCompanyIntention(text) } }, { title: '最新跟进', dataIndex: 'fllowSituation', key: 'fllowSituation', render: text => { return
Some contents...
Some contents...
Some contents...