visitDetail.jsx 9.4 KB

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