123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- import React from 'react';
- import {Form,Button,Spin,message,Table,Popconfirm,Modal} from 'antd';
- import ajax from 'jquery/src/ajax/xhr.js';
- import $ from 'jquery/src/ajax';
- import {getCompanyIntention,getfllowSituation,getcustomerStatue,getContactType } from '@/tools.js';
- const FormItem =Form.Item;
- import BusinFollow from './businFollow.jsx'
- const BusinessDetail =React.createClass({
- getInitialState(){
- return {
- loading:false,
- visitArrList: [],
- busData:{},
- paginationst: {
- defaultCurrent: 1,
- defaultPageSize: 10,
- showQuickJumper: true,
- pageSize: 10,
- onChange: function(page) {
- this.loadVisit(page);
- }.bind(this),
- showTotal: function(total) {
- return '共' + total + '条数据';
- }
- },
- businessFollowList: [{
- title: '跟进时间',
- dataIndex: 'followTime',
- key: 'followTime',
- }, {
- title: '营销员',
- dataIndex: 'adminName',
- key: 'adminName',
- }, {
- title: '业务意向进度',
- dataIndex: 'followSituation',
- key: 'followSituation',
- render: text => { return getfllowSituation(text) }
- }, {
- title: '客户状态',
- dataIndex: 'customerStatus',
- key: 'customerStatus',
- render: text => { return getcustomerStatue(text) }
- },
- {
- title: '拜访方式',
- dataIndex: 'contactType',
- key: 'contactType',
- render: text => { return getContactType(text) }
- }, {
- title: '联系人',
- dataIndex: 'contacts',
- key: 'contacts',
- render:(text,record)=>{
- return <div>
- {
- !record.readOnly?
- <span>{text}</span>:
- <span>***</span>
- }
- </div>
- }
- },
- {
- title: '联系电话',
- dataIndex: 'contactMobile',
- key: 'contactMobile',
- render:(text,record)=>{
- return <div>
- {
- !record.readOnly?
- <span>{text}</span>:
- <span>***</span>
- }
- </div>
- }
- }, {
- title: '操作',
- dataIndex: 'ooo',
- key: 'ooo',
- render: (text, record) => { return(<Button onClick={(e)=>{this.businessFollowDetails(record)}}>查看历史</Button>) }
- }
- ],
- }
- },
- //业务跟进查看跟多
- businessFollowDetails(e) {
- this.setState({
- busData:e,
- businessFollowModul: true
- })
- },
- listFollowUp(e) {
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/customer/toUpdateFollowOneBusiness",
- data: {
- ufbId: e
- },
- success: function(data) {
- let thedata = data.data;
- if(!thedata) {
- if(data.error && data.error.length) {
- message.warning(data.error[0].message);
- };
- thedata = {};
- };
- this.setState({
- businessProjectName: thedata.businessProjectName,
- followSituations: thedata.followSituation,
- customerStatuss: thedata.customerStatus,
- followTimes: thedata.followTime,
- createTimes: thedata.createTime,
- identifyNames: thedata.identifyName,
- contactTypes: parseInt(thedata.contactType),
- results: thedata.result,
- remarkss: thedata.remarks,
- adminNames: thedata.adminName,
- contactss: thedata.contacts,
- contactMobiles: thedata.contactMobile,
- ufbId: thedata.ufbId,
- followIds: thedata.followId,
- });
- }.bind(this),
- }).always(function() {
- this.setState({
- loading: false
- });
- }.bind(this));
- },
- //查看跟进记录列表
- loadVisit(pageNo) {
- this.setState({
- loading: true
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + '/api/admin/customer/listFollowHistory',
- data: {
- pageNo: pageNo || 1,
- pageSize: this.state.paginationst.pageSize,
- uid: this.props.ids, //名称1
- businessProjectId:this.props.data.businessProjectId
- },
- 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];
- theArr.push({
- key:i,
- readOnly:thisdata.readOnly,
- followId: thisdata.followId,
- followTime: thisdata.followTime,
- identifyName: thisdata.identifyName,
- contacts: thisdata.contacts,
- contactMobile: thisdata.contactMobile,
- result: thisdata.result,
- ufbId: thisdata.ufbId,
- adminName: thisdata.adminName,
- followSituation: thisdata.followSituation,
- customerStatus: thisdata.customerStatus,
- contactType: thisdata.contactType
- });
- };
- this.state.paginationst.current = data.data.pageNo;
- this.state.paginationst.total = data.data.totalCount;
- };
- if(data.data.list&&!data.data.list.length){
- this.state.paginationst.current = 0;
- this.state.paginationst.total = 0;
- };
- this.setState({
- visitArrList: theArr,
- paginationst: this.state.paginationst
- });
- }.bind(this),
- }).always(function() {
- this.setState({
- loading: false
- });
- }.bind(this));
- },
- businessIntentionDetails(e) {
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + '/api/admin/customer/toUpdateBusiness',
- data: {
- businessId: e.businessId,
- },
- success: function(data) {
- let thisData = data.data;
- if(!thisData) {
- if(data.error && data.error.length) {
- message.warning(data.error[0].message);
- };
- thisData = {};
- };
- this.setState({
- businessProjectName: thisData.businessProjectName,
- identifyName: thisData.identifyName,
- uid: thisData.uid,
- businessId: thisData.businessId,
- followSituation: thisData.followSituation,
- customerStatus: thisData.customerStatus,
- createTime: thisData.createTime,
- followTime: thisData.followTime,
- adminName: thisData.adminName,
- remarks: thisData.remarks,
- result: thisData.result,
- });
- }.bind(this),
- }).always(function() {
- this.loadVisit();
- this.setState({
- loading: false
- });
- }.bind(this));
- this.setState({
- businessModul: true
- })
- },
- businessIntentionCancel(){
- this.setState({
- businessFollowModul:false,
- businessModul:false
- })
- },
- closeBusiness(s){
- this.state.businessFollowModul=s
- },
- componentWillReceiveProps(nextProps) {
- if(nextProps.data.businessId&&nextProps.businessModul&&nextProps.ids){
- this.setState({
- businessModul:true
- })
- this.businessIntentionDetails(nextProps.data);
- }
- this.setState({
- businessFollowModul:false
- })
- },
- render(){
- const formItemLayout = {
- labelCol: { span: 8 },
- wrapperCol: { span: 14 },
- };
- return(
- <div>
- <Modal
- footer=''
- title="业务意向详情"
- width='1200px'
- visible={this.state.businessModul}
- onOk={this.businessIntentionCancel}
- onCancel={this.businessIntentionCancel}
- >
- <div className="clearfix">
- <Form layout="horizontal" id="demand-form" onSubmit={this.passworldSubmit}>
- <Spin spinning={this.state.loading}>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="意向业务名称" >
- <span>{this.state.businessProjectName}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="意向时间" >
- <span>{this.state.createTime}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="客户名称" >
- <span>{this.state.identifyName}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="营销员" >
- <span>{this.state.adminName}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="意向业务进度" >
- <span>{getfllowSituation(this.state.followSituation)}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="业务客户状态" >
- <span>{getcustomerStatue(this.state.customerStatus)}</span>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="业务意向说明" >
- <span>{this.state.remarks}</span>
- </FormItem>
- </div>
- <div className="clearfix">
- <div style={{fontSize:'18px',lineHeight:'24px',marginBottom:'10px'}}>业务跟进</div>
- <div className="clearfix">
- <Spin spinning={this.state.loading}>
- <Table
- pagination={this.state.paginationst}
- columns={this.state.businessFollowList}
- dataSource={this.state.visitArrList}
- />
- </Spin>
- </div>
- </div>
- </Spin>
- </Form>
- </div>
- </Modal>
- <BusinFollow
- data={this.state.busData}
- businessFollowModul={this.state.businessFollowModul}
- closeBusiness = {this.closeBusiness}
- />
- </div>
- )
- }
- });
- export default BusinessDetail;
|