signCustomer.jsx 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698
  1. import React from 'react';
  2. import {
  3. Radio,
  4. Icon,
  5. Button,
  6. AutoComplete,
  7. Cascader,
  8. Input,
  9. Select,
  10. Tabs,
  11. Spin,
  12. Popconfirm,
  13. Table,
  14. Switch,
  15. message,
  16. DatePicker,
  17. Upload,
  18. Form,
  19. Modal
  20. } from 'antd';
  21. import ajax from 'jquery/src/ajax/xhr.js';
  22. import $ from 'jquery/src/ajax';
  23. import moment from 'moment';
  24. import { citySelect, provinceList } from '@/NewDicProvinceList';
  25. import { socialAttribute, industry, auditStatusL, lvl, currentMember } from '@/dataDic.js';
  26. import { getSocialAttribute, beforeUploadFile, ShowModal } from "@/tools.js";
  27. import FollowDetail from './followDetail.jsx'
  28. import ShowModalDiv from "@/showModal.jsx";
  29. import ZhuanjiaoDetail from "@/zhuanjiaoDetail.jsx";
  30. import IntentionDetail from './intentionDetail/intentionDetail.jsx'
  31. import './customer.less';
  32. import {ChooseList} from "../../../order/orderNew/chooseList";
  33. const {TabPane} = Tabs
  34. const IntentionCustomer = Form.create()(React.createClass({
  35. loadData(pageNo, apiUrl) {
  36. this.setState({
  37. visitModul:false,
  38. loading: true,
  39. ispage:pageNo,
  40. modalVisible:false
  41. });
  42. let api=apiUrl?apiUrl:this.props.ApiUrl;
  43. $.ajax({
  44. method: "post",
  45. dataType: "json",
  46. crossDomain: false,
  47. url: globalConfig.context + api,
  48. data: {
  49. pageNo: pageNo || 1,
  50. pageSize: this.state.pagination.pageSize,
  51. name: this.state.nameSearch,
  52. province: !(this.state.addressSearch).length ? this.state.provinceSearch : this.state.addressSearch[0],
  53. city: !(this.state.addressSearch).length ? '' : this.state.addressSearch[1],
  54. startDate: this.state.releaseDate[0],
  55. endDate: this.state.releaseDate[1],
  56. },
  57. success: function(data) {
  58. ShowModal(this);
  59. let theArr = [];
  60. if(data.error.length || data.data.list == "") {
  61. if(data.error && data.error.length) {
  62. message.warning(data.error[0].message);
  63. };
  64. } else {
  65. for(let i = 0; i < data.data.list.length; i++) {
  66. let thisdata = data.data.list[i];
  67. let diqu=(thisdata.province==null?"":thisdata.province)+(thisdata.city==null?"":"-"+thisdata.city)+(thisdata.area==null?"":"-"+thisdata.area);
  68. thisdata.key = i;
  69. thisdata.id = thisdata.uid;
  70. thisdata.transferTime = thisdata.transferTime && thisdata.transferTime.split(" ")[0];
  71. thisdata.lastSignTime = thisdata.lastSignTime && thisdata.lastSignTime.split(" ")[0];
  72. thisdata.lastFollowTime = thisdata.lastFollowTime && thisdata.lastFollowTime.split(" ")[0];
  73. locationProvince : diqu
  74. theArr.push(thisdata);
  75. };
  76. this.state.pagination.current = data.data.pageNo;
  77. this.state.pagination.total = data.data.totalCount;
  78. };
  79. if(data.data&&data.data.list&&!data.data.list.length){
  80. this.state.pagination.current=0
  81. this.state.pagination.total=0
  82. };
  83. this.setState({
  84. dataSource: theArr,
  85. pagination: this.state.pagination,
  86. selectedRowKeys:[]
  87. });
  88. }.bind(this),
  89. }).always(function() {
  90. this.setState({
  91. loading: false
  92. });
  93. }.bind(this));
  94. },
  95. getInitialState() {
  96. return {
  97. addressSearch: [],
  98. orgCodeUrl: [],
  99. companyLogoUrl: [],
  100. visible: false,
  101. searchMore: true,
  102. releaseDate: [],
  103. visitModul: false,
  104. keys: false,
  105. detailApi: "",
  106. followData: {},
  107. selectedRowKeys: [],
  108. selectedRowKey: [],
  109. selectedRows: [],
  110. loading: false,
  111. defaultActiveKey: '',
  112. modalVisible: false,
  113. pagination: {
  114. defaultCurrent: 1,
  115. defaultPageSize: 10,
  116. showQuickJumper: true,
  117. pageSize: 10,
  118. onChange: function (page) {
  119. this.loadData(page);
  120. }.bind(this),
  121. showTotal: function (total) {
  122. return "共" + total + "条数据";
  123. },
  124. },
  125. columns: [
  126. {
  127. title: "客户名称",
  128. dataIndex: "name",
  129. key: "name",
  130. },
  131. {
  132. title: "地区",
  133. dataIndex: "locationProvince",
  134. key: "locationProvince",
  135. },
  136. {
  137. title: "最新签单日期",
  138. dataIndex: "transferTime",
  139. key: "transferTime",
  140. },
  141. // {
  142. // title: "最新跟进日期",
  143. // dataIndex: "lastFollowTime",
  144. // key: "lastFollowTime",
  145. // },
  146. // {
  147. // title: "剩余私有天数",
  148. // dataIndex: "surplusFollowTime",
  149. // key: "surplusFollowTime",
  150. // },
  151. // {
  152. // title: "剩余签单天数",
  153. // dataIndex: "surplusSignTime",
  154. // key: "surplusSignTime",
  155. // },
  156. // {
  157. // title: "联系人",
  158. // dataIndex: "contacts",
  159. // key: "contacts",
  160. // },
  161. // {
  162. // title: "联系电话",
  163. // dataIndex: "contactMobile",
  164. // key: "contactMobile",
  165. // },
  166. {
  167. title: "社会属性",
  168. dataIndex: "societyTag",
  169. key: "societyTag",
  170. render: (text) => {
  171. return getSocialAttribute(text);
  172. },
  173. },
  174. {
  175. title: "操作",
  176. dataIndex: "abc",
  177. key: "abc",
  178. render: (text, record, index) => {
  179. return (
  180. <div>
  181. <Button
  182. onClick={(e) => {
  183. e.stopPropagation(), this.visit(record);
  184. }}
  185. type="primary"
  186. >
  187. 客户跟进
  188. </Button>
  189. <Button
  190. style={{ marginLeft: 10 }}
  191. onClick={(e) => {
  192. e.stopPropagation(), this.zhuanjiaoDetail(record);
  193. }}
  194. type="primary"
  195. >
  196. 转交记录
  197. </Button>
  198. <Button
  199. style={{ marginLeft: 10 }}
  200. type="primary"
  201. onClick={(e)=>{
  202. e.stopPropagation();
  203. this.setState({
  204. defaultActiveKey: '6'
  205. },()=>{
  206. this.tableRowClick(record);
  207. })
  208. }}
  209. >
  210. 转交业务
  211. </Button>
  212. </div>
  213. );
  214. },
  215. },
  216. ],
  217. data: [],
  218. dataSource: [],
  219. };
  220. },
  221. zhuanjiaoDetail(record) {
  222. this.setState({
  223. zhuanjiaoVisible: true,
  224. zhuanjiaoId: record.id
  225. })
  226. },
  227. zhuanjiaoDetailCancel() {
  228. this.setState({
  229. zhuanjiaoVisible: false
  230. })
  231. },
  232. //进入新增拜访记录
  233. visit(e) {
  234. this.setState({
  235. followData:e,
  236. visitModul:true,
  237. modalVisible:false
  238. })
  239. },
  240. //列表删除功能
  241. delectRow() {
  242. let deletedIds;
  243. for(let idx = 0; idx < this.state.selectedRows.length; idx++) {
  244. let rowItem = this.state.selectedRows[idx];
  245. if(rowItem.id) {
  246. deletedIds = rowItem.id;
  247. };
  248. };
  249. this.setState({
  250. loading: true,
  251. selectedRowKeys: [],
  252. });
  253. $.ajax({
  254. method: "get",
  255. dataType: "json",
  256. crossDomain: false,
  257. url: globalConfig.context + "/api/admin/customer/deleteCustomer",
  258. data: {
  259. uid: deletedIds, //删除的ID
  260. }
  261. }).done(function(data) {
  262. if(!data.error.length) {
  263. message.success('删除成功!');
  264. this.setState({
  265. loading: false,
  266. });
  267. } else {
  268. message.warning(data.error[0].message);
  269. };
  270. this.loadData(this.state.ispage);
  271. }.bind(this));
  272. },
  273. componentWillMount() {
  274. //城市
  275. let Province = [];
  276. provinceList.map(function(item) {
  277. var id = String(item.id)
  278. Province.push(
  279. <Select.Option value={id} key={item.name}>{item.name}</Select.Option>
  280. )
  281. });
  282. //行业
  283. let intentionalArr = [];
  284. industry.map(function(item) {
  285. intentionalArr.push(
  286. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  287. )
  288. });
  289. this.state.Provinces = Province;
  290. this.state.intentionalOption = intentionalArr;
  291. this.loadData();
  292. },
  293. closeDesc(e, s) {
  294. this.state.basicState=e
  295. this.state.visitModul=e;
  296. this.state.modalVisible=e;
  297. this.state.showDesc = e;
  298. this.setState({
  299. defaultActiveKey:''
  300. })
  301. if(s) {
  302. this.loadData(this.state.ispage);
  303. };
  304. },
  305. search() {
  306. this.loadData();
  307. },
  308. reset() {
  309. this.state.nameSearch = '';
  310. this.state.addressSearch = [];
  311. this.state.provinceSearch = undefined;
  312. this.state.citySearch = undefined;
  313. this.state.releaseDate[0] = undefined;
  314. this.state.releaseDate[1] = undefined;
  315. this.loadData();
  316. },
  317. searchSwitch() {
  318. this.setState({
  319. visitModul:false,
  320. searchMore: !this.state.searchMore
  321. });
  322. },
  323. //整行点击
  324. tableRowClick(record) {
  325. this.state.visitModul=false;
  326. this.state.RowData = record;
  327. this.setState({
  328. // selectedRowKeys: [],
  329. modalVisible:true,
  330. basicState:true,
  331. contactState:true,
  332. modalName: record.name
  333. })
  334. },
  335. //指定转交人自动补全
  336. supervisor(e){
  337. $.ajax({
  338. method: "get",
  339. dataType: "json",
  340. crossDomain: false,
  341. url: globalConfig.context + "/api/admin/customer/listAdminByName",
  342. data:{
  343. adminName:e
  344. },
  345. success: function (data) {
  346. let thedata=data.data;
  347. if (!thedata) {
  348. if (data.error && data.error.length) {
  349. message.warning(data.error[0].message);
  350. };
  351. thedata = {};
  352. };
  353. this.setState({
  354. customerArr:thedata,
  355. });
  356. }.bind(this),
  357. }).always(function () {
  358. this.setState({
  359. loading: false
  360. });
  361. }.bind(this));
  362. },
  363. componentWillReceiveProps(nextProps) {
  364. if(nextProps.ApiUrl!=this.props.ApiUrl) {
  365. if(!this.state.searchMore){
  366. this.state.searchMore=true
  367. }
  368. this.state.nameSearch = '';
  369. this.state.addressSearch = [];
  370. this.state.provinceSearch = undefined;
  371. this.state.citySearch = undefined;
  372. this.state.releaseDate[0] = undefined;
  373. this.state.releaseDate[1] = undefined;
  374. this.loadData(null,nextProps.ApiUrl);
  375. };
  376. },
  377. changeList(arr) {
  378. const newArr = [];
  379. this.state.columns.forEach(item => {
  380. arr.forEach(val => {
  381. if (val === item.title) {
  382. newArr.push(item);
  383. }
  384. });
  385. });
  386. this.setState({
  387. changeList: newArr
  388. });
  389. },
  390. //上级主管输入框失去焦点是判断客户是否存在
  391. selectAuto(value, options) {
  392. this.setState({
  393. auto: value,
  394. });
  395. },
  396. //值改变时请求客户名称
  397. httpChange(e) {
  398. if (e.length >= 1) {
  399. this.supervisor(e);
  400. }
  401. this.setState({
  402. auto: e,
  403. });
  404. },
  405. showConfirm(fn, record) {
  406. if(this.state.confirmLoading){
  407. return false;
  408. }
  409. Modal.confirm({
  410. title: "提示",
  411. content: (
  412. <span style={{ color: "red" }}>
  413. 确定要转交以下客户吗?
  414. {
  415. this.state.selectedRows.map((value,index)=>(
  416. <div key={index} style={{marginTop:'5px',color: "#000"}}>
  417. {value.name}
  418. </div>
  419. ))
  420. }
  421. </span>
  422. ),
  423. onOk() {
  424. fn(record);
  425. },
  426. onCancel() {},
  427. });
  428. },
  429. //转交
  430. changeAssigner() {
  431. if (this.state.theTypes) {
  432. this.setState({
  433. confirmLoading: true
  434. })
  435. const hide = message.loading('转交中...', 0);
  436. let changeIds = '';
  437. let oldAid = '';
  438. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  439. let rowItem = this.state.selectedRows[idx];
  440. if (rowItem.id) {
  441. oldAid = rowItem.aid;
  442. changeIds = this.state.selectedRows.length-1 === idx ? changeIds +rowItem.id : changeIds + rowItem.id + ',' ;
  443. }
  444. }
  445. $.ajax({
  446. method: "get",
  447. dataType: "json",
  448. crossDomain: false,
  449. url: globalConfig.context + "/api/admin/customer/transferToOther",
  450. data: {
  451. uid: changeIds, //这一行数据的ID
  452. aid: this.state.theTypes, //指定转交人的ID
  453. oldAid: window.adminData.uid,
  454. operatorType:4
  455. },
  456. }).done(
  457. function (data) {
  458. if (!data.error.length) {
  459. message.success("转交成功!");
  460. this.setState({
  461. auto: "",
  462. loading: false,
  463. selectedRowKeys: [],
  464. });
  465. } else {
  466. message.warning(data.error[0].message);
  467. }
  468. this.loadData(
  469. Math.min(
  470. this.state.ispage == undefined ? 1 : this.state.ispage,
  471. Math.ceil((this.state.pagination.total - 1) / 10)
  472. )
  473. );
  474. hide();
  475. this.setState({
  476. confirmLoading: false
  477. })
  478. }.bind(this)
  479. );
  480. } else {
  481. message.warning("请输入转交人姓名");
  482. }
  483. },
  484. blurChange(e) {
  485. let theType = "";
  486. let contactLists = this.state.customerArr || [];
  487. if (e) {
  488. contactLists.map(function (item) {
  489. if (item.name == e.toString()) {
  490. theType = item.id;
  491. }
  492. });
  493. }
  494. this.setState({
  495. theTypes: theType,
  496. });
  497. },
  498. render() {
  499. const rowSelection = {
  500. selectedRowKeys: this.state.selectedRowKeys,
  501. onChange: (selectedRowKeys, selectedRows) => {
  502. this.setState({
  503. modalVisible:false,
  504. selectedRows: selectedRows,
  505. selectedRowKeys: selectedRowKeys
  506. });
  507. },
  508. onSelect: (recordt, selected, selectedRows) => {
  509. this.setState({
  510. modalVisible:false,
  511. recordt: recordt.id
  512. })
  513. },
  514. };
  515. const hasSelected = this.state.selectedRowKeys.length > 0;
  516. const { RangePicker } = DatePicker;
  517. const dataSources=this.state.customerArr || [];
  518. const options = dataSources.map((group) =>
  519. <Select.Option key={group.id} value={group.name}>{group.name}</Select.Option>
  520. )
  521. const intentionState = this.props.intentionState ||'';
  522. return (
  523. <div className="user-content">
  524. <ShowModalDiv ShowModal={this.state.showModal} />
  525. {this.state.zhuanjiaoVisible ? (
  526. <ZhuanjiaoDetail
  527. cancel={this.zhuanjiaoDetailCancel}
  528. visible={this.state.zhuanjiaoVisible}
  529. type={1}
  530. id={this.state.zhuanjiaoId}
  531. />
  532. ) : (
  533. ""
  534. )}
  535. <div className="content-title">
  536. <span>{!intentionState ? "签单客户" : "签单客户"}</span>
  537. </div>
  538. <Tabs defaultActiveKey="1" className="test">
  539. <TabPane tab="搜索" key="1">
  540. <div className="user-search">
  541. <Input
  542. placeholder="客户名称"
  543. value={this.state.nameSearch}
  544. onChange={(e) => {
  545. this.setState({ nameSearch: e.target.value });
  546. }}
  547. />
  548. <Select
  549. placeholder="省"
  550. style={{ width: 80 }}
  551. value={this.state.provinceSearch}
  552. onChange={(e) => {
  553. this.setState({ provinceSearch: e });
  554. }}
  555. >
  556. {this.state.Provinces}
  557. </Select>
  558. <span style={{ marginRight: "10px" }}>
  559. <Cascader
  560. options={citySelect()}
  561. value={this.state.addressSearch}
  562. placeholder="选择城市"
  563. onChange={(e, pre) => {
  564. this.setState({ addressSearch: e });
  565. }}
  566. />
  567. </span>
  568. {/* <div className="clearfix" style={{ marginTop: "5px" }}>
  569. <div
  570. className="search-more"
  571. style={this.state.searchMore ? { display: "none" } : {}}
  572. > */}
  573. <span>签单时间:</span>
  574. <RangePicker
  575. value={[
  576. this.state.releaseDate[0]
  577. ? moment(this.state.releaseDate[0])
  578. : null,
  579. this.state.releaseDate[1]
  580. ? moment(this.state.releaseDate[1])
  581. : null,
  582. ]}
  583. onChange={(data, dataString) => {
  584. this.setState({ releaseDate: dataString });
  585. }}
  586. />
  587. {/* </div>
  588. </div> */}
  589. <Button
  590. type="primary"
  591. onClick={this.search}
  592. style={{ marginLeft: 10 }}
  593. >
  594. 搜索
  595. </Button>
  596. <Button onClick={this.reset}>重置</Button>
  597. {/* {adminData.isSuperAdmin?<Popconfirm title="是否删除?" onConfirm={this.delectRow} okText="是" cancelText="否">
  598. <Button type="danger" style={{marginLeft:'10px'}}
  599. disabled={!hasSelected}
  600. >删除<Icon type="minus" />
  601. </Button>
  602. </Popconfirm>:''
  603. }*/}
  604. {/* <span style={{ marginLeft: "10px", marginRight: "20px" }}>
  605. 更多搜索
  606. <Switch
  607. checked={!this.state.searchMore}
  608. onChange={this.searchSwitch}
  609. />
  610. </span> */}
  611. </div>
  612. </TabPane>
  613. <TabPane tab="操作" key="2">
  614. <div className="user-search">
  615. <AutoComplete
  616. className="certain-category-search"
  617. dropdownClassName="certain-category-search-dropdown"
  618. dropdownMatchSelectWidth={false}
  619. dropdownStyle={{ width: 120 }}
  620. style={{ width: "120px" }}
  621. dataSource={options}
  622. placeholder="输入转交人姓名"
  623. value={this.state.auto}
  624. onChange={this.httpChange}
  625. filterOption={true}
  626. onBlur={this.blurChange}
  627. onSelect={this.selectAuto}
  628. disabled={!hasSelected}
  629. >
  630. <Input />
  631. </AutoComplete>
  632. <Button
  633. type="primary"
  634. onClick={(e) => {
  635. e.stopPropagation();
  636. this.showConfirm(this.changeAssigner);
  637. }}
  638. disabled={!hasSelected}
  639. style={{ marginRight: 10 }}
  640. >
  641. 转交客户
  642. </Button>
  643. </div>
  644. </TabPane>
  645. <TabPane tab="更改表格显示数据" key="3">
  646. <div style={{ marginLeft: 10 }}>
  647. <ChooseList
  648. columns={this.state.columns}
  649. changeFn={this.changeList}
  650. changeList={this.state.changeList}
  651. top={55}
  652. margin={11}
  653. />
  654. </div>
  655. </TabPane>
  656. </Tabs>
  657. <div className="patent-table">
  658. <Spin spinning={this.state.loading}>
  659. <Table
  660. size="middle"
  661. columns={
  662. this.state.changeList
  663. ? this.state.changeList
  664. : this.state.columns
  665. }
  666. dataSource={this.state.dataSource}
  667. rowSelection={rowSelection}
  668. pagination={this.state.pagination}
  669. onRowClick={this.tableRowClick}
  670. />
  671. </Spin>
  672. </div>
  673. <FollowDetail
  674. followData={this.state.followData}
  675. visitModul={this.state.visitModul}
  676. closeDesc={this.closeDesc}
  677. loadData={this.loadData}
  678. />
  679. <IntentionDetail
  680. detailApi={this.props.detailApi}
  681. IntentionData={this.state.RowData}
  682. loadData={this.loadData}
  683. modalVisible={this.state.modalVisible}
  684. defaultActiveKey={this.state.defaultActiveKey}
  685. name={this.state.modalName}
  686. closeDesc={this.closeDesc}
  687. basicState={this.state.basicState}
  688. contactState={this.state.contactState}
  689. />
  690. </div>
  691. );
  692. }
  693. }));
  694. export default IntentionCustomer;