visitDetail.jsx 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. import React from 'react'
  2. import ajax from 'jquery/src/ajax/xhr.js';
  3. import $ from 'jquery/src/ajax';
  4. import {Modal,Form,layout,Radio,Button,Input,Spin,Table,Select,Popconfirm,message} from 'antd';
  5. import {intentionalService,newFollow,customerStatus} from '@/dataDic.js';
  6. import {getCompanyIntention,getfllowSituation,getcustomerStatue,getContactType} from '@/tools.js';
  7. const FormItem =Form.Item;
  8. const VisitDetail = React.createClass({
  9. getInitialState(){
  10. return{
  11. visitModul:false,
  12. loading:false,
  13. data:[],
  14. //业务意向列表
  15. intentionList:[
  16. {
  17. title: '业务名称',
  18. dataIndex: 'businessVarietiesName',
  19. width:120,
  20. key: 'businessVarietiesName'
  21. },
  22. {
  23. title: '项目名称',
  24. dataIndex: 'businessProjectName',
  25. key:'businessProjectName',
  26. width:120
  27. },
  28. {
  29. title: '最新进度',
  30. width:120,
  31. dataIndex: 'followSituation',
  32. key: 'followSituation',
  33. render: (text, record, index) => {
  34. return <div>
  35. {!record.readOnly?<Select placeholder="选择最新进度" value={record.followSituation} onChange={(e) => { record.followSituation = e; this.setState({ data: this.state.data }); }}>
  36. {
  37. newFollow.map(function (item) {
  38. return <Select.Option key={item.value} >{item.key}</Select.Option>
  39. })
  40. }
  41. </Select>:
  42. <span>{getfllowSituation(text)}</span>}
  43. </div>
  44. }
  45. }, {
  46. title: '最新状态',
  47. width:120,
  48. dataIndex: 'customerStatus',
  49. key: 'customerStatus',
  50. render: (text, record, index) => {
  51. return <div>
  52. {!record.readOnly?<Select value={record.customerStatus} placeholder="选择最新状态" onChange={(e) => { record.customerStatus = e; this.setState({ data: this.state.data }); }}>
  53. {
  54. customerStatus.map(function (item) {
  55. return <Select.Option key={item.value} >{item.key}</Select.Option>
  56. })
  57. }
  58. </Select>:
  59. <span>{getcustomerStatue(text)}</span>}
  60. </div>
  61. }
  62. }, {
  63. title: '跟进说明',
  64. width:120,
  65. dataIndex: 'remarks',
  66. key: 'remarks',
  67. render: (text, record, index) => {
  68. return <Input value={record.remarks} placeholder="跟进说明"
  69. onChange={(e) => { record.remarks = e.target.value; this.setState({ data: this.state.data }); }}
  70. />
  71. }
  72. }
  73. ],
  74. }
  75. },
  76. //进入修改拜访记录
  77. visitModify(e) {
  78. this.setState({
  79. visitModul: true,
  80. loading: true
  81. });
  82. $.ajax({
  83. method: "get",
  84. dataType: "json",
  85. url: globalConfig.context + '/api/admin/customer/toUpdateFollow',
  86. data: {
  87. followId: e,
  88. },
  89. success: function(data) {
  90. let theArr = [];
  91. let thedata = data.data;
  92. if(!thedata) {
  93. if(data.error && data.error.length) {
  94. message.warning(data.error[0].message);
  95. };
  96. thedata = {};
  97. };
  98. for(let i = 0; i < data.data.userBusinessList.length; i++) {
  99. let thisdata = data.data.userBusinessList[i];
  100. theArr.push({
  101. readOnly:this.props.followData.readOnly,
  102. id: thisdata.ufbId,
  103. businessName:thisdata.businessProjectId,
  104. businessVarietiesName:thisdata.businessVarietiesName,
  105. businessProjectName:thisdata.businessProjectName,
  106. followSituation: thisdata.followSituation==null?undefined : String(thisdata.followSituation),
  107. customerStatus: thisdata.customerStatus==null?undefined : String(thisdata.customerStatus),
  108. remarks: thisdata.remarks,
  109. });
  110. };
  111. this.setState({
  112. followIds: thedata.followId,
  113. contacts: thedata.contacts,
  114. uid: thedata.uid,
  115. data: theArr,
  116. result: thedata.result,
  117. contactMobile:thedata.contactMobile,
  118. contactType: parseInt(thedata.contactType),
  119. followTime: thedata.followTime,
  120. followSituation: thedata.followSituation,
  121. customerStatus: thedata.customerStatus,
  122. });
  123. }.bind(this),
  124. }).always(function() {
  125. this.setState({
  126. loading: false
  127. });
  128. }.bind(this));
  129. },
  130. //拜访意向服务列表单个删除
  131. intentionDelet(e, index) {
  132. let detId = this.state.followIds;
  133. if(e.id) {
  134. this.setState({
  135. selectedRowKeys: [],
  136. });
  137. $.ajax({
  138. method: "get",
  139. dataType: "json",
  140. crossDomain: false,
  141. url: globalConfig.context + "/api/admin/customer/deleteFollowOneBusiness",
  142. data: {
  143. ufbId: e.id
  144. }
  145. }).done(function(data) {
  146. if(!data.error.length) {
  147. message.success('删除成功');
  148. this.setState({
  149. loading: false,
  150. });
  151. } else {
  152. message.warning(data.error[0].message);
  153. };
  154. this.visitModify(detId);
  155. }.bind(this));
  156. } else {
  157. this.visitModify(detId);
  158. }
  159. },
  160. //拜访modul函数
  161. visitOk(e) {
  162. this.setState({
  163. addcontactModul:false,
  164. visitModul: false
  165. });
  166. },
  167. visitCancel(e) {
  168. this.setState({
  169. addcontactModul:false,
  170. visitModul: false
  171. });
  172. },
  173. //详情保存
  174. visitSubmit(e){
  175. e.preventDefault();
  176. this.setState({
  177. loading: true
  178. });
  179. let contactsId = '';
  180. if(this.state.keys) {
  181. let conts = this.state.lastName;
  182. contactsId = this.state.contactsIdArr[conts].id;
  183. }
  184. let GlossoryId=false;
  185. this.state.data.map(function(item) {
  186. if(!item.followSituation||!item.customerStatus||!item.businessName) {
  187. GlossoryId = true
  188. }
  189. })
  190. if(this.state.data.length&&GlossoryId) {
  191. message.warning("项目名称/最新进度/最新状态不能为空!")
  192. return false;
  193. };
  194. let dataList=this.state.data,
  195. idsList=[];
  196. dataList.map((item,index) => {
  197. idsList.push({
  198. ufbId:item.id||'',
  199. businessProjectId:item.businessName,
  200. customerStatus:item.customerStatus,
  201. followSituation:item.followSituation,
  202. remarks:item.remarks||''
  203. })
  204. });
  205. //新增
  206. $.ajax({
  207. method: "post",
  208. dataType: "json",
  209. url: globalConfig.context + '/api/admin/customer/updateFollow',
  210. data: {
  211. followId: this.state.followIds,
  212. userBusinessList: JSON.stringify(idsList),
  213. uid: this.state.uid,
  214. contactType: this.state.contactType,
  215. result: this.state.result,
  216. followTime: this.state.followTime,
  217. }
  218. }).done(function(data) {
  219. this.setState({
  220. loading: false
  221. });
  222. if(!data.error.length) {
  223. message.success('保存成功!');
  224. this.props.closeDesc(false,true);
  225. this.visitCancel();
  226. } else {
  227. message.warning(data.error[0].message);
  228. }
  229. }.bind(this));
  230. },
  231. componentWillReceiveProps(nextProps) {
  232. if (nextProps.visitModul && nextProps.followData.followId) {
  233. this.setState({
  234. visitModul: true,
  235. loading: true,
  236. })
  237. this.visitModify(nextProps.followData.followId)
  238. };
  239. },
  240. render() {
  241. const formItemLayout = {
  242. labelCol: { span: 8 },
  243. wrapperCol: { span: 14 },
  244. };
  245. const followData= this.props.followData || []
  246. return(
  247. <div>
  248. <Modal
  249. className="customeDetails"
  250. footer=''
  251. title="客户跟进详情"
  252. width='1000px'
  253. visible={this.state.visitModul}
  254. onOk={this.visitOk}
  255. onCancel={this.visitCancel}
  256. >
  257. <Form layout="horizontal" id="demand-form" onSubmit={this.visitSubmit}>
  258. <Spin spinning={this.state.loading}>
  259. <div className="clearfix">
  260. <FormItem
  261. labelCol={{ span:4 }}
  262. wrapperCol={{ span: 20 }}
  263. style={{marginBottom:12}}
  264. label="拜访方式" >
  265. {!followData.readOnly?<Radio.Group value={this.state.contactType} onChange={(e) => {
  266. this.setState({ contactType: e.target.value })
  267. }}>
  268. <Radio value={0}>外出</Radio>
  269. <Radio value={1}>电话</Radio>
  270. <Radio value={2}>QQ</Radio>
  271. <Radio value={3}>微信</Radio>
  272. <Radio value={4}>邮箱</Radio>
  273. </Radio.Group>:
  274. <span>{getContactType(this.state.contactType)}</span>
  275. }
  276. </FormItem>
  277. <div className="clearfix">
  278. {!followData.readOnly&&<FormItem className="half-item"
  279. {...formItemLayout}
  280. label="当前联系人"
  281. >
  282. <span>{this.state.contacts}</span>
  283. </FormItem>}
  284. <FormItem className="half-item"
  285. {...formItemLayout}
  286. label="跟进时间"
  287. >
  288. <span>{this.state.followTime}</span>
  289. </FormItem>
  290. {!followData.readOnly&&<FormItem className="half-item"
  291. {...formItemLayout}
  292. label="联系电话"
  293. >
  294. <span>{this.state.contactMobile}</span>
  295. </FormItem>}
  296. </div>
  297. <div className="clearfix">
  298. <FormItem
  299. labelCol={{ span: 4 }}
  300. wrapperCol={{ span: 16 }}
  301. label="跟进备注" >
  302. {!followData.readOnly?<Input type="textarea" rows={4} value={this.state.result}
  303. onChange={(e)=>{this.setState({result:e.target.value})}}/>:
  304. <span>{this.state.result}</span>
  305. }
  306. </FormItem>
  307. </div>
  308. <div className="clearfix">
  309. <div style={{fontSize:'18px',marginLeft:'100px',marginTop:'15px',marginBottom:'10px'}}>业务意向</div>
  310. <div className="clearfix">
  311. <Spin spinning={this.state.loading}>
  312. <Table
  313. rowKey={record => record.id}
  314. pagination={false}
  315. columns={this.state.intentionList}
  316. dataSource={this.state.data}
  317. />
  318. </Spin>
  319. </div>
  320. </div>
  321. </div>
  322. {!followData.readOnly&& <FormItem wrapperCol={{ span: 12, offset: 6 }}>
  323. <Button type="primary" size="large" htmlType="submit" style={{marginRight:'150px',marginTop:'20px'}}>保存</Button>
  324. <Button size="large" onClick={this.visitCancel}>取消</Button>
  325. </FormItem>}
  326. </Spin>
  327. </Form>
  328. </Modal>
  329. </div>
  330. )
  331. }
  332. })
  333. export default VisitDetail;