visit.jsx 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. import React from 'react';
  2. import {Form, Button, Spin, message, Table, Tooltip, Input, Modal} from 'antd';
  3. import ajax from 'jquery/src/ajax/xhr.js';
  4. import $ from 'jquery/src/ajax';
  5. import FollowDetail from '../../followDetail.jsx'
  6. import {getContactType} from '@/tools.js';
  7. import VisitDetail from './visitDetail.jsx';
  8. const confirm = Modal.confirm;
  9. const Visit = React.createClass({
  10. getInitialState(){
  11. return {
  12. visitArrList: [],
  13. loading: false,
  14. visitModul: false,
  15. visitModuls: false,
  16. followId:0,
  17. ispage:1,
  18. paginations: {
  19. defaultCurrent: 1,
  20. defaultPageSize: 10,
  21. showQuickJumper: true,
  22. pageSize: 10,
  23. onChange: function (page) {
  24. this.loadVisit(page);
  25. }.bind(this),
  26. showTotal: function (total) {
  27. return "共" + total + "条数据";
  28. },
  29. },
  30. visitsList: [
  31. {
  32. title: "客户名称",
  33. dataIndex: "identifyName",
  34. key: "identifyName",
  35. },
  36. {
  37. title: "跟进方式",
  38. dataIndex: "contactType",
  39. key: "contactType",
  40. render: (text) => {
  41. return getContactType(text);
  42. },
  43. },
  44. {
  45. title: "联系人",
  46. dataIndex: "contacts",
  47. key: "contacts",
  48. render: (text, record) => {
  49. return (
  50. <div>
  51. {record.readOnly ? <span>***</span> : <span>{text}</span>}
  52. </div>
  53. );
  54. },
  55. },
  56. {
  57. title: "联系电话",
  58. dataIndex: "contactMobile",
  59. key: "contactMobile",
  60. render: (text, record) => {
  61. return (
  62. <div>
  63. {record.readOnly ? <span>***</span> : <span>{text}</span>}
  64. </div>
  65. );
  66. },
  67. },
  68. {
  69. title: "跟进人",
  70. dataIndex: "adminName",
  71. key: "adminName",
  72. },
  73. {
  74. title: "跟进说明",
  75. dataIndex: "result",
  76. key: "result",
  77. // }, {
  78. // title: '操作',
  79. // dataIndex: 'ttt',
  80. // key: 'ttt',
  81. // render: (text, record, index) => {
  82. // return <div>
  83. // {!record.readOnly&&<Popconfirm title="是否删除?" onConfirm={(e)=>{this.visitDelet(record)}} okText="删除" cancelText="不删除">
  84. // <Button style={{marginRight:'10px',color:'#ffffff',background:'#f00',border:'none'}} onClick={(e)=>{e.stopPropagation()}}>删除</Button>
  85. // </Popconfirm>}
  86. // </div>
  87. // }
  88. },
  89. {
  90. title: "跟进时间",
  91. dataIndex: "followTime",
  92. key: "followTime",
  93. },
  94. {
  95. title: "指导意见",
  96. dataIndex: "abc",
  97. key: "abc",
  98. render: (text, record) => {
  99. return (
  100. <div>
  101. {record.guidance ?
  102. <div style={{
  103. cursor:"pointer",
  104. width: '150px',
  105. whiteSpace: 'nowrap',
  106. overflow: 'hidden',
  107. textOverflow: 'ellipsis',
  108. }}
  109. onClick={(e)=>{
  110. e.stopPropagation();
  111. Modal.info({
  112. title: '指导意见',
  113. content: (
  114. <div style={{
  115. wordWrap:"break-word"
  116. }}>
  117. {record.guidance}
  118. </div>
  119. ),
  120. onOk() {},
  121. });
  122. }}>
  123. <span>
  124. {record.guidance}
  125. </span>
  126. </div> : (this.props.isEditGuidanceLv ? <Button
  127. onClick={(e) => {
  128. e.stopPropagation();
  129. this.setState({
  130. guidanceVisible: true,
  131. visitModul: false,
  132. followId: record.followId
  133. })
  134. }}
  135. type="primary"
  136. >
  137. 立即指导
  138. </Button> : <span>暂未指导</span>)}
  139. </div>
  140. );
  141. },
  142. },
  143. {
  144. title: "指导时间",
  145. dataIndex: "guidanceTime",
  146. key: "guidanceTime",
  147. render: (text, record) => {
  148. return (
  149. <span>{text ? text : ''}</span>
  150. )
  151. }
  152. }
  153. ],
  154. guidanceVisible: false,
  155. guidance: ''
  156. };
  157. },
  158. //拜访记录删除
  159. visitDelet(e) {
  160. this.setState({
  161. visitModul:false,
  162. loading: true
  163. });
  164. $.ajax({
  165. method: "get",
  166. dataType: "json",
  167. crossDomain: false,
  168. url: globalConfig.context + "/api/admin/customer/deleteFollow",
  169. data: {
  170. followId: e.followId, //删除的ID
  171. }
  172. }).done(function(data) {
  173. if(!data.error.length) {
  174. message.success('删除成功!');
  175. this.setState({
  176. loading: false,
  177. });
  178. } else {
  179. message.warning(data.error[0].message);
  180. };
  181. this.loadVisit();
  182. }.bind(this));
  183. },
  184. //查看跟进记录列表
  185. loadVisit(pageNo) {
  186. this.setState({
  187. loading: true
  188. });
  189. $.ajax({
  190. method: "get",
  191. dataType: "json",
  192. crossDomain: false,
  193. url: globalConfig.context + '/api/admin/customer/listFollowHistory',
  194. data: {
  195. pageNo: pageNo || 1,
  196. pageSize: this.state.paginations.pageSize,
  197. uid: this.props.data.id, //名称1
  198. },
  199. success: function(data) {
  200. let theArr = [];
  201. if(data.error.length || data.data.list == "") {
  202. if(data.error && data.error.length) {
  203. message.warning(data.error[0].message);
  204. };
  205. } else {
  206. for(let i = 0; i < data.data.list.length; i++) {
  207. let thisdata = data.data.list[i];
  208. theArr.push(thisdata);
  209. };
  210. this.state.paginations.current = data.data.pageNo;
  211. this.state.paginations.total = data.data.totalCount;
  212. this.setState({
  213. ispage: data.data.pageNo
  214. })
  215. };
  216. if(data.data.list&&!data.data.list.length){
  217. this.state.paginations.current =0;
  218. this.state.paginations.total =0;
  219. };
  220. this.setState({
  221. visitArrList: theArr,
  222. paginations: this.state.paginations
  223. });
  224. }.bind(this),
  225. }).always(function() {
  226. this.setState({
  227. loading: false
  228. });
  229. }.bind(this));
  230. },
  231. componentWillMount(){
  232. this.loadVisit();
  233. },
  234. detailsModal(){
  235. this.props.closeDetail(false, false)
  236. },
  237. //点击整行
  238. VisitRowClick(record){
  239. this.setState({
  240. followData: record,
  241. visitModul:true,
  242. })
  243. },
  244. //进入新增拜访记录
  245. visit() {
  246. let obj = {
  247. id: this.props.data.id
  248. }
  249. this.setState({
  250. followData:obj,
  251. visitModuls:true,
  252. })
  253. },
  254. closeDesc(e,s){
  255. this.state.visitModul=e
  256. this.state.visitModuls=e
  257. if(s){
  258. this.loadVisit()
  259. }
  260. },
  261. //发布指导意见
  262. releaseGuidance(e){
  263. e.stopPropagation();
  264. if(!this.state.guidance){
  265. message.info('指导意见不能为空')
  266. return;
  267. }
  268. this.setState({
  269. loading: true,
  270. });
  271. $.ajax({
  272. method: "post",
  273. dataType: "json",
  274. crossDomain: false,
  275. url: globalConfig.context + "/api/admin/customer/addGuidance",
  276. data: {
  277. guidance: this.state.guidance,
  278. followId: this.state.followId,
  279. },
  280. }).done(function(data) {
  281. if(!data.error.length) {
  282. message.success("发布成功");
  283. this.loadVisit(this.state.ispage);
  284. this.setState({
  285. loading: false,
  286. guidanceVisible: false,
  287. });
  288. } else {
  289. message.warning(data.error[0].message);
  290. }
  291. }.bind(this));
  292. },
  293. componentWillReceiveProps(nextProps) {
  294. if(nextProps.data.id&&nextProps.visitState){
  295. this.loadVisit()
  296. }
  297. this.setState({
  298. visitModul:false
  299. })
  300. },
  301. render(){
  302. return(
  303. <div className="clearfix">
  304. {!this.props.isGuidanceLv ? <Button
  305. onClick={(e) => {
  306. e.stopPropagation();
  307. this.visit();
  308. }}
  309. type="primary"
  310. style={{marginTop:'10px',float: 'right'}}
  311. >
  312. 客户跟进
  313. </Button> : <div/>}
  314. <Spin spinning={this.state.loading}>
  315. <Table
  316. size="middle"
  317. style={{
  318. marginTop:this.props.isGuidanceLv ? '0px' : '60px',
  319. cursor: 'pointer',
  320. }}
  321. pagination={this.state.paginations}
  322. columns={this.state.visitsList}
  323. dataSource={this.state.visitArrList}
  324. onRowClick={this.VisitRowClick}
  325. />
  326. </Spin>
  327. <VisitDetail
  328. categoryArr={this.props.categoryArr}
  329. followData={this.state.followData}
  330. visitModul={this.state.visitModul}
  331. closeDesc={this.closeDesc}
  332. mid={this.props.data.id}
  333. />
  334. <FollowDetail
  335. categoryArr={this.props.categoryArr}
  336. followData={this.state.followData}
  337. visitModul={this.state.visitModuls}
  338. closeDesc={this.closeDesc}
  339. loadData={this.loadVisit}
  340. />
  341. {/*指导意见*/}
  342. {this.state.guidanceVisible ? <Modal
  343. className="customeDetails"
  344. title="指导意见"
  345. width='500px'
  346. visible={this.state.guidanceVisible}
  347. onOk={()=>{
  348. this.setState({
  349. guidanceVisible: false,
  350. guidance: '',
  351. },()=>{
  352. this.loadVisit();
  353. })
  354. }}
  355. onCancel={()=>{
  356. this.setState({
  357. guidanceVisible: false,
  358. guidance: '',
  359. },()=>{
  360. this.loadVisit();
  361. })
  362. }}
  363. footer=''
  364. >
  365. <Spin spinning={this.state.loading}>
  366. <div style={{
  367. display:'flex',
  368. flexFlow:'column',
  369. }}>
  370. <Input
  371. style={{ width: '400px',height:'50px' }}
  372. placeholder="请输入指导意见"
  373. type={'textarea'}
  374. onChange={(e)=>{
  375. this.setState({
  376. guidance: e.target.value,
  377. })
  378. }}
  379. />
  380. <Button
  381. type="primary"
  382. style={{ marginTop: "10px", marginBottom: '10px' }}
  383. onClick={(e)=>{
  384. let _this = this;
  385. confirm({
  386. title: '确定要提交本次指导意见吗?',
  387. content: '指导意见提交成功后无法修改',
  388. onOk() {
  389. _this.releaseGuidance(e);
  390. },
  391. onCancel() {},
  392. });
  393. }}
  394. >
  395. 保存
  396. </Button>
  397. </div>
  398. </Spin>
  399. </Modal> : <div/>}
  400. </div>
  401. )
  402. }
  403. })
  404. export default Visit;