import React from 'react'
import ajax from 'jquery/src/ajax/xhr.js';
import $ from 'jquery/src/ajax';
import {Modal,Form,layout,Radio,Button,Input,Spin,Table,Select,Popconfirm,message} from 'antd';
import {intentionalService,newFollow,customerStatus} from '@/dataDic.js';
import {getCompanyIntention,getfllowSituation,getcustomerStatue,getContactType} from '@/tools.js';
const FormItem =Form.Item;
const VisitDetail = React.createClass({
getInitialState(){
return{
visitModul:false,
loading:false,
data:[],
//业务意向列表
intentionList:[
{
title: '业务名称',
dataIndex: 'businessVarietiesName',
width:120,
key: 'businessVarietiesName'
},
{
title: '项目名称',
dataIndex: 'businessProjectName',
key:'businessProjectName',
width:120
},
{
title: '最新进度',
width:120,
dataIndex: 'followSituation',
key: 'followSituation',
render: (text, record, index) => {
return {getfllowSituation(text)}
}
}, {
title: '最新状态',
width:120,
dataIndex: 'customerStatus',
key: 'customerStatus',
render: (text, record, index) => {
return {getcustomerStatue(text)}
}
}, {
title: '跟进说明',
width:120,
dataIndex: 'remarks',
key: 'remarks',
render: (text, record, index) => {
return(
{text&&text.length>14?(text.substr(0,14)+'…'):text}
)
}
}, {
title: '操作',
width:120,
dataIndex: 'rrr',
key: 'rrr',
render: (text, record, index) => {
return
{this.intentionDelet(record,index)}} okText="删除" cancelText="不删除">
}
}
],
}
},
//进入修改拜访记录
visitModify(e) {
this.setState({
visitModul: true,
loading: true
});
$.ajax({
method: "get",
dataType: "json",
url: globalConfig.context + '/api/admin/customer/toUpdateFollow',
data: {
followId: e,
},
success: function(data) {
let theArr = [];
let thedata = data.data;
if(!thedata) {
if(data.error && data.error.length) {
message.warning(data.error[0].message);
};
thedata = {};
};
for(let i = 0; i < data.data.userBusinessList.length; i++) {
let thisdata = data.data.userBusinessList[i];
theArr.push({
id: thisdata.businessId,
businessName:thisdata.businessProjectId,
businessVarietiesName:thisdata.businessVarietiesName,
businessProjectName:thisdata.businessProjectName,
followSituation: String(thisdata.followSituation),
customerStatus: String(thisdata.customerStatus),
remarks: thisdata.remarks,
});
};
this.setState({
followIds: thedata.followId,
contacts: thedata.contacts,
uid: thedata.uid,
dataBus: theArr,
result: thedata.result,
contactMobile:thedata.contactMobile,
contactType: parseInt(thedata.contactType),
followTime: thedata.followTime,
followSituation: thedata.followSituation,
customerStatus: thedata.customerStatus,
});
}.bind(this),
}).always(function() {
this.setState({
loading: false
});
}.bind(this));
},
//拜访意向服务列表单个删除
intentionDelet(e, index) {
let detId = this.state.followIds;
if(e.id) {
this.setState({
selectedRowKeys: [],
});
$.ajax({
method: "get",
dataType: "json",
crossDomain: false,
url: globalConfig.context + "/api/admin/customer/deleteFollowOneBusiness",
data: {
ufbId: e.id
}
}).done(function(data) {
if(!data.error.length) {
message.success('删除成功');
this.setState({
loading: false,
});
} else {
message.warning(data.error[0].message);
};
this.visitModify(detId);
}.bind(this));
} else {
this.visitModify(detId);
}
},
//拜访modul函数
visitOk(e) {
this.setState({
addcontactModul:false,
visitModul: false
});
},
visitCancel(e) {
this.setState({
addcontactModul:false,
visitModul: false
});
},
//详情保存
visitSubmit(e){
e.preventDefault();
this.setState({
loading: true
});
let contactsId = '';
if(this.state.keys) {
let conts = this.state.lastName;
contactsId = this.state.contactsIdArr[conts].id;
}
//新增
$.ajax({
method: "post",
dataType: "json",
url: globalConfig.context + '/api/admin/customer/updateFollow',
data: {
followId: this.state.followIds,
userBusinessList: JSON.stringify(this.state.data),
uid: this.state.uid,
contactType: this.state.contactType,
result: this.state.result,
followTime: this.state.followTime,
}
}).done(function(data) {
this.setState({
loading: false
});
if(!data.error.length) {
message.success('保存成功!');
this.props.closeDesc(false,true);
this.visitCancel();
} else {
message.warning(data.error[0].message);
}
}.bind(this));
},
componentWillReceiveProps(nextProps) {
if (nextProps.visitModul && nextProps.followData.followId) {
this.setState({
visitModul: true,
loading: true,
})
this.visitModify(nextProps.followData.followId)
};
},
render() {
const formItemLayout = {
labelCol: { span: 8 },
wrapperCol: { span: 14 },
};
const followData= this.props.followData || []
return(