addIntention.jsx 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  1. import React from 'react';
  2. import {Modal, message, Spin, Input, Select, Button, Form, Col, Cascader, Tag, Tooltip,AutoComplete} from 'antd';
  3. import ajax from 'jquery/src/ajax/xhr.js';
  4. import $ from 'jquery/src/ajax';
  5. import { citySelect, provinceList ,areaSelect} from '@/NewDicProvinceList';
  6. import {socialAttribute,customerSource} from '@/dataDic.js';
  7. import TextArea from "antd/es/input/TextArea";
  8. const Option = Select.Option;
  9. const AchievementDetailForm = Form.create()(React.createClass({
  10. getInitialState() {
  11. return {
  12. loading: false,
  13. data: {},
  14. detailApi:'',
  15. businessScope:[],
  16. inputVisible:false,
  17. cooperationProjects:[],
  18. selectCooperationProjects:[]
  19. };
  20. },
  21. handleSubmit(e) {
  22. // if (/.*[\u4e00-\u9fa5]+.*$/.test(this.state.content)) {
  23. // } else {
  24. // message.error("请填写正确的姓名,且至少包含一个汉字");
  25. // return;
  26. // }
  27. e.preventDefault();
  28. this.props.form.validateFields((err, values) => {
  29. if(values.name.length>64){
  30. message.warning('公司名称字数不超过64个')
  31. return false;
  32. };
  33. let regu = /[`~!#$%^&*'_[\]+=<>?:"{}|~!#¥%……&*=-@-!{}|/《》?:“”【】、;;‘’,,.。、\s+]/g;
  34. if(regu.test(values.name)){
  35. message.warning('公司名称不能存在特殊符号!')
  36. return false;
  37. }
  38. if (/.*[\u4e00-\u9fa5]+.*$/.test(values.content)) {
  39. } else {
  40. message.error("请填写正确的联系人,且至少包含一个汉字");
  41. return false;
  42. };
  43. if (/.*[\u4e00-\u9fa5]+.*$/.test(values.position)) {
  44. } else {
  45. message.error("请填写正确的职位,且至少包含一个汉字");
  46. return false;
  47. };
  48. if(!values.ProvinceCity[1]) {
  49. message.warning('请选择地区');
  50. return false;
  51. };
  52. if(values.content.length>32){
  53. message.warning('联系人字数不超过32个')
  54. return false;
  55. };
  56. if(values.length>13){
  57. message.warning('电话号码字数不超过13个')
  58. return false;
  59. };
  60. if(this.state.businessScope.length === 0){
  61. message.warning('请选择主营产品')
  62. return false;
  63. }
  64. if(this.state.selectCooperationProjects.length === 0){
  65. message.warning('请选择意向合作项目')
  66. return false;
  67. }
  68. let arr = [];
  69. for(let i of this.state.selectCooperationProjects){
  70. arr.push(i.label)
  71. }
  72. if (!err) {
  73. this.setState({
  74. loading: true
  75. });
  76. $.ajax({
  77. method: "POST",
  78. dataType: "json",
  79. crossDomain: false,
  80. url: globalConfig.context + '/api/admin/customer/addCustomer',
  81. data: {
  82. name: values.name,
  83. contacts:values.content,
  84. contactMobile:values.telnum,
  85. // societyTag:values.societyTagt,
  86. //source:values.customerSource,
  87. province:(values.ProvinceCity)[0],//省
  88. city:(values.ProvinceCity)[1],//市
  89. area:(values.ProvinceCity)[2],//区
  90. type:'1',
  91. intendedProject:arr.join(','),
  92. businessScope:this.state.businessScope.join(','),
  93. position:values.position,
  94. }
  95. }).done(function (data) {
  96. this.setState({
  97. loading: false
  98. });
  99. if (!data.error.length) {
  100. message.success('保存成功!');
  101. this.props.handleOk();
  102. } else {
  103. message.warning(data.error[0].message);
  104. }
  105. }.bind(this));
  106. }
  107. });
  108. },
  109. componentWillMount() {
  110. this.state.name='';
  111. this.state.content='';
  112. this.state.position='';
  113. this.state.telnum='';
  114. // this.state.societyTagt='0';
  115. this.state.customerSource='0';
  116. this.state.inputValue='';
  117. this.state.businessScope = [];
  118. this.state.inputVisible = false;
  119. this.state.cooperationProjects = [];
  120. this.state.selectCooperationProjects = [];
  121. },
  122. componentWillReceiveProps(nextProps) {
  123. if (!this.props.visible && nextProps.visible) {
  124. this.state.name='';
  125. this.state.content='';
  126. this.state.position = '';
  127. this.state.telnum='';
  128. this.state.inputValue='';
  129. this.state.businessScope = [];
  130. this.state.inputVisible = false;
  131. this.state.cooperationProjects = [];
  132. this.state.selectCooperationProjects = [];
  133. // this.state.societyTagt='0';
  134. this.props.form.resetFields();
  135. };
  136. },
  137. handleClose(removedTag){
  138. let businessScope = this.state.businessScope.filter(tag => {return tag !== removedTag});
  139. this.setState({ businessScope });
  140. },
  141. handleCloseCooperation(removedTag){
  142. let selectCooperationProjects = this.state.selectCooperationProjects.filter(tag => {return tag.value !== removedTag.value});
  143. this.setState({ selectCooperationProjects });
  144. },
  145. showInput(){
  146. let str = this.state.businessScope.join('/')
  147. this.setState({
  148. inputVisible: true,
  149. inputValue: str
  150. });
  151. },
  152. handleInputConfirm(){
  153. let inputValue = this.state.inputValue;
  154. let arr = inputValue.split('/');
  155. let lv = true;
  156. for(let i of arr){
  157. if(i.length > 16){
  158. message.warning('单个标签字数不能超过16个字符')
  159. lv = false;
  160. return;
  161. }
  162. }
  163. if(lv){
  164. arr = Array.from(new Set(arr));
  165. arr = arr.filter(v=>v);
  166. this.setState({
  167. businessScope:arr,
  168. inputVisible: false,
  169. inputValue: '',
  170. });
  171. }
  172. },
  173. //加载(自动补全)
  174. supervisor(value) {
  175. $.ajax({
  176. method: "get",
  177. dataType: "json",
  178. crossDomain: false,
  179. url: globalConfig.context + '/api/admin/order/getBusinessProjectByName',
  180. data: {
  181. businessName: value
  182. },
  183. success: function (data) {
  184. let thedata = data.data;
  185. if (data.error.length === 0) {
  186. this.setState({
  187. cooperationProjects: thedata,
  188. });
  189. }else{
  190. message.warning(data.error[0].message);
  191. }
  192. }.bind(this),
  193. }).always(
  194. function () {
  195. }.bind(this)
  196. );
  197. },
  198. onSelect(value){
  199. let arr = this.state.cooperationProjects.filter(v=>v.id === value);
  200. let arr1 = this.state.selectCooperationProjects.filter(v=>v.value === value);
  201. if(arr.length > 0){
  202. if(arr1.length > 0){
  203. message.warning('选项已存在');
  204. }else{
  205. this.state.selectCooperationProjects.push({
  206. label: arr[0].bname,
  207. value: arr[0].id,
  208. })
  209. this.setState({
  210. selectCooperationProjects:this.state.selectCooperationProjects
  211. })
  212. }
  213. }
  214. },
  215. render() {
  216. const theData = this.state.data || {};
  217. const { getFieldDecorator } = this.props.form;
  218. const FormItem = Form.Item
  219. const formItemLayout = {
  220. labelCol: { span: 6 },
  221. wrapperCol: { span: 14 },
  222. };
  223. return (
  224. <div>
  225. <Form layout="horizontal" onSubmit={this.handleSubmit} id="demand-form">
  226. <Spin spinning={this.state.loading}>
  227. <div>
  228. <Col style={{color:'red',marginBottom:'10px'}} span={12} offset={6}>注意:请录入真实有效的客户信息</Col>
  229. <div className="clearfix">
  230. <FormItem className="mid-item"
  231. {...formItemLayout}
  232. label="公司名称" >
  233. {getFieldDecorator('name', {
  234. rules: [{ required: true, message: '此项为必填项!' }],
  235. initialValue: this.state.name
  236. })(
  237. <Input placeholder="公司名称" />
  238. )}
  239. </FormItem>
  240. </div>
  241. <div className="clearfix">
  242. <FormItem
  243. {...formItemLayout}
  244. label="省-市-区"
  245. >
  246. {getFieldDecorator('ProvinceCity', {
  247. rules: [{ required: true, message: '此项为必填项!' }],
  248. initialValue: this.state.ProvinceCity
  249. })(
  250. <Cascader options={areaSelect()} placeholder="选择城市" />
  251. )}
  252. </FormItem>
  253. </div>
  254. <div className="clearfix">
  255. <FormItem className="mid-item"
  256. {...formItemLayout}
  257. label="联系人" >
  258. {getFieldDecorator('content', {
  259. rules: [{ required: true, message: '此项为必填项!' }],
  260. initialValue: this.state.content
  261. })(
  262. <Input placeholder="联系人姓名" />
  263. )}
  264. </FormItem>
  265. </div>
  266. <div className="clearfix">
  267. <FormItem className="mid-item"
  268. {...formItemLayout}
  269. label="职位" >
  270. {getFieldDecorator('position', {
  271. rules: [{ required: true, message: '此项为必填项!' }],
  272. initialValue: this.state.position
  273. })(
  274. <Input placeholder="联系人职位" />
  275. )}
  276. </FormItem>
  277. </div>
  278. <div className="clearfix">
  279. <FormItem className="mid-item"
  280. {...formItemLayout}
  281. label="联系电话" >
  282. {getFieldDecorator('telnum', {
  283. rules: [{ required: true, message: '此项为必填项!' }],
  284. initialValue: this.state.telnum
  285. })(
  286. <Input placeholder="请填写手机号,仅填座机号时,请后续补充手机号" />
  287. )}
  288. </FormItem>
  289. </div>
  290. <div className="clearfix">
  291. <FormItem className="mid-item"
  292. {...formItemLayout}
  293. required
  294. label="主营产品" >
  295. <div>
  296. {this.state.businessScope.map((tag, index) => {
  297. const isLongTag = tag.length > 20;
  298. const tagElem = (
  299. <Tag closable key={tag} afterClose={() => this.handleClose(tag)}>
  300. {isLongTag ? `${tag.slice(0, 20)}...` : tag}
  301. </Tag>
  302. );
  303. return isLongTag ? <Tooltip title={tag} key={tag}>{tagElem}</Tooltip> : tagElem;
  304. })}
  305. {
  306. !this.state.inputVisible &&
  307. <Button
  308. size="small"
  309. type="primary"
  310. onClick={this.showInput}>
  311. + 新增主营产品
  312. </Button>
  313. }
  314. </div>
  315. {this.state.inputVisible && (<div>
  316. <TextArea
  317. style={{width:'300px',height:'100px'}}
  318. value={this.state.inputValue}
  319. onChange={(e)=>{
  320. this.setState({
  321. inputValue: e.target.value
  322. })
  323. }}/>
  324. <div style={{color:'#f00'}}>提示:请用 / 符号隔开关键字</div>
  325. <div>
  326. <Button
  327. size="small"
  328. type="primary"
  329. onClick={this.handleInputConfirm}>
  330. 确定
  331. </Button>
  332. <Button
  333. size="small"
  334. style={{marginLeft:'5px'}}
  335. onClick={()=>{
  336. this.setState({
  337. inputVisible: false,
  338. inputValue: ''
  339. })
  340. }}>
  341. 取消
  342. </Button>
  343. </div>
  344. </div>)}
  345. </FormItem>
  346. </div>
  347. <div className="clearfix">
  348. <FormItem
  349. className="mid-item"
  350. {...formItemLayout}
  351. required
  352. label="意向合作项目" >
  353. <div>
  354. <div style={{paddingBottom: this.state.selectCooperationProjects.length === 0 ? 0 : '10px'}}>
  355. {this.state.selectCooperationProjects.map((tag, index) => {
  356. const isLongTag = tag.label.length > 20;
  357. const tagElem = (
  358. <Tag closable key={tag.label} afterClose={() => this.handleCloseCooperation(tag)}>
  359. {isLongTag ? `${tag.label.slice(0, 20)}...` : tag.label}
  360. </Tag>
  361. );
  362. return isLongTag ? <Tooltip title={tag.label} key={tag.label}>{tagElem}</Tooltip> : tagElem;
  363. })}
  364. </div>
  365. <div>
  366. <AutoComplete
  367. style={{ width: 200 }}
  368. onSearch={this.supervisor}
  369. onSelect={this.onSelect}
  370. placeholder="请输入关键字"
  371. >
  372. {
  373. this.state.cooperationProjects.map(function (item) {
  374. return <Select.Option key={item.id} value={item.id}>{item.bname}</Select.Option>
  375. })
  376. }
  377. </AutoComplete>
  378. </div>
  379. </div>
  380. </FormItem>
  381. </div>
  382. {/*<div className="clearfix">*/}
  383. {/* <FormItem className="mid-item"*/}
  384. {/* {...formItemLayout}*/}
  385. {/* label="社会属性"*/}
  386. {/* >*/}
  387. {/* {getFieldDecorator('societyTagt', {*/}
  388. {/* rules: [{ required: true, message: '此项为必填项!' }],*/}
  389. {/* initialValue: this.state.societyTagt*/}
  390. {/* })(*/}
  391. {/* <Select placeholder="客户社会属性">*/}
  392. {/* {*/}
  393. {/* socialAttribute.map(function (item) {*/}
  394. {/* return <Select.Option key={item.value} >{item.key}</Select.Option>*/}
  395. {/* })*/}
  396. {/* }*/}
  397. {/* </Select>*/}
  398. {/* )}*/}
  399. {/* </FormItem>*/}
  400. {/*</div>*/}
  401. </div>
  402. <FormItem wrapperCol={{ span: 12, offset: 6 }}>
  403. <Button type="primary" htmlType="submit" style={{marginRight:'50px'}}>保存</Button>
  404. <Button type="ghost" onClick={this.props.closeDesc}>取消</Button>
  405. </FormItem>
  406. </Spin>
  407. </Form >
  408. </div>
  409. )
  410. }
  411. }));
  412. const AddPerson = Form.create()(React.createClass({
  413. getInitialState() {
  414. return {
  415. loading: false,
  416. data: {},
  417. detailApi:''
  418. };
  419. },
  420. handleSubmit(e) {
  421. e.preventDefault();
  422. this.props.form.validateFields((err, values) => {
  423. if(values.companyNamet.length>64){
  424. message.warning('联系人字数不超过64个')
  425. return false;
  426. };
  427. if(!values.ProvinceCity[1]) {
  428. message.warning('请选择地区');
  429. return false;
  430. };
  431. if(values.telnums.length>13){
  432. message.warning('电话号码字数不超过13个')
  433. return false;
  434. };
  435. if (!err) {
  436. this.setState({
  437. loading: true
  438. });
  439. $.ajax({
  440. method: "POST",
  441. dataType: "json",
  442. crossDomain: false,
  443. url: globalConfig.context + '/api/admin/customer/addCustomer',
  444. data: {
  445. contacts:values.companyNamet,
  446. societyTag:values.societyTagt,
  447. name: values.companyNamet,
  448. contactMobile: values.telnums,
  449. source:values.customerSource,
  450. province:(values.ProvinceCity)[0],//省
  451. city:(values.ProvinceCity)[1],//市
  452. area:(values.ProvinceCity)[2],//区
  453. type:'0'
  454. }
  455. }).done(function (data) {
  456. this.setState({
  457. loading: false
  458. });
  459. if (!data.error.length) {
  460. message.success('保存成功!');
  461. this.props.handleOk();
  462. } else {
  463. message.warning(data.error[0].message);
  464. }
  465. }.bind(this));
  466. }
  467. });
  468. },
  469. componentWillMount() {
  470. this.state.companyNamet='';
  471. this.state.telnum='';
  472. this.state.societyTagt='0';
  473. this.state.customerSource='0';
  474. },
  475. componentWillReceiveProps(nextProps) {
  476. if (!this.props.visible && nextProps.visible) {
  477. this.state.companyNamet='';
  478. this.state.telnum='';
  479. this.state.societyTagt='0';
  480. this.state.customerSource='0';
  481. this.props.form.resetFields();
  482. };
  483. },
  484. render() {
  485. const theData = this.state.data || {};
  486. const { getFieldDecorator } = this.props.form;
  487. const FormItem = Form.Item
  488. const formItemLayout = {
  489. labelCol: { span: 6 },
  490. wrapperCol: { span: 14 },
  491. };
  492. return (
  493. <div>
  494. <Form layout="horizontal" onSubmit={this.handleSubmit} id="demand-form">
  495. <Spin spinning={this.state.loading}>
  496. <Col style={{color:'red',marginBottom:'10px'}} span={12} offset={6}>注意:请录入真实有效的客户信息</Col>
  497. <div className="clearfix">
  498. <FormItem className="mid-item"
  499. {...formItemLayout}
  500. label="客户姓名" >
  501. {getFieldDecorator('companyNamet', {
  502. rules: [{ required: true, message: '此项为必填项!' }],
  503. initialValue: this.state.companyNamet
  504. })(
  505. <Input placeholder="客户姓名" />
  506. )}
  507. </FormItem>
  508. </div>
  509. <div className="clearfix">
  510. <FormItem
  511. {...formItemLayout}
  512. label="省-市-区"
  513. >
  514. {getFieldDecorator('ProvinceCity', {
  515. rules: [{ required: true, message: '此项为必填项!' }],
  516. initialValue: this.state.ProvinceCity
  517. })(
  518. <Cascader options={areaSelect()} placeholder="选择城市" />
  519. )}
  520. </FormItem>
  521. </div>
  522. <div className="clearfix">
  523. <FormItem className="mid-item"
  524. {...formItemLayout}
  525. label="联系电话" >
  526. {getFieldDecorator('telnums', {
  527. rules: [{ required: true, message: '此项为必填项!' }],
  528. initialValue: this.state.telnums
  529. })(
  530. <Input placeholder="联系电话" />
  531. )}
  532. </FormItem>
  533. </div>
  534. <div className="clearfix">
  535. <FormItem className="mid-item"
  536. {...formItemLayout}
  537. label="社会属性"
  538. >
  539. {getFieldDecorator('societyTagt', {
  540. rules: [{ required: true, message: '此项为必填项!' }],
  541. initialValue: this.state.societyTagt
  542. })(
  543. <Select placeholder="客户社会属性">
  544. {
  545. socialAttribute.map(function (item) {
  546. return <Select.Option key={item.value} >{item.key}</Select.Option>
  547. })
  548. }
  549. </Select>
  550. )}
  551. </FormItem>
  552. </div>
  553. <div className="clearfix">
  554. <FormItem className="mid-item"
  555. {...formItemLayout}
  556. label="客户来源"
  557. >
  558. {getFieldDecorator('customerSource', {
  559. rules: [{ required: true, message: '此项为必填项!' }],
  560. initialValue: this.state.customerSource
  561. })(
  562. <Select placeholder="客户来源">
  563. {
  564. customerSource.map(function (item) {
  565. return <Select.Option key={item.value} >{item.key}</Select.Option>
  566. })
  567. }
  568. </Select>
  569. )}
  570. </FormItem>
  571. </div>
  572. <FormItem wrapperCol={{ span: 12, offset: 6 }}>
  573. <Button style={{marginRight:'50px'}} type="primary" htmlType="submit">保存</Button>
  574. <Button type="ghost" onClick={this.props.closeDesc}>取消</Button>
  575. </FormItem>
  576. </Spin>
  577. </Form >
  578. </div>
  579. )
  580. }
  581. }));
  582. const AddIntention = React.createClass({
  583. getInitialState() {
  584. return {
  585. visible: false,
  586. tabsKey: 1,
  587. loading: false,
  588. dataSource: [],
  589. };
  590. },
  591. handleCancel(e) {
  592. this.setState({
  593. visible: false,
  594. });
  595. this.props.closeDesc(false);
  596. },
  597. handleOk(e) {
  598. this.setState({
  599. visible: false,
  600. });
  601. this.props.closeDesc(false, true);
  602. },
  603. componentWillReceiveProps(nextProps) {
  604. if (!this.state.visible && nextProps.showDesc) {
  605. this.state.tabsKey = "1";
  606. };
  607. this.state.visible = nextProps.showDesc;
  608. },
  609. render() {
  610. return (
  611. <div className="patent-desc">
  612. <Modal maskClosable={false} visible={this.state.visible}
  613. onOk={this.checkPatentProcess} onCancel={this.handleCancel}
  614. width='600px'
  615. title='新建客户'
  616. footer=''
  617. className="admin-desc-content">
  618. <Spin spinning={this.state.loading}>
  619. {this.props.api.indexOf('Personal')<0?<AchievementDetailForm
  620. data={this.props.data}
  621. newmodal={this.props.newmodal}
  622. closeDesc={this.handleCancel}
  623. visible={this.state.visible}
  624. handleOk={this.handleOk} />:<AddPerson
  625. data={this.props.data}
  626. newmodal={this.props.newmodal}
  627. closeDesc={this.handleCancel}
  628. visible={this.state.visible}
  629. handleOk={this.handleOk}
  630. />}
  631. </Spin>
  632. </Modal>
  633. </div>
  634. );
  635. },
  636. });
  637. export default AddIntention;