inforChange.jsx 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. import React, { Component } from "react";
  2. import {
  3. AutoComplete,
  4. Button,
  5. Cascader,
  6. Input,
  7. message,
  8. Modal,
  9. Popconfirm,
  10. Select,
  11. Spin,
  12. Table,
  13. Tag,
  14. Tooltip
  15. } from "antd";
  16. import { areaSelect, getProvince } from '@/NewDicProvinceList';
  17. import { industry, natureList } from '@/dataDic.js'
  18. import { getIndustry, getNatureType } from '@/tools.js'
  19. import $ from "jquery/src/ajax";
  20. import TextArea from "antd/es/input/TextArea";
  21. const Option = Select.Option;
  22. class InforChange extends Component {
  23. constructor(props) {
  24. super(props);
  25. this.state = {
  26. visible: false,
  27. changeType: 0,
  28. colunmn: [
  29. {
  30. title: "操作人名称",
  31. dataIndex: "adminName",
  32. key: "adminName",
  33. },
  34. {
  35. title: "客户名称",
  36. dataIndex: "name",
  37. key: "name",
  38. render: (text) => {
  39. return (
  40. <Tooltip title={text}>
  41. <div
  42. // style={{
  43. // maxWidth: '150px',
  44. // overflow: 'hidden',
  45. // textOverflow: "ellipsis",
  46. // whiteSpace: 'nowrap',
  47. // }}
  48. >{text}</div>
  49. </Tooltip>
  50. )
  51. }
  52. },
  53. {
  54. title: "操作时间",
  55. dataIndex: "createTimes",
  56. key: "createTimes",
  57. },
  58. ],
  59. dataSource: [],
  60. inputVisible: false,
  61. inputValue: '',
  62. dataArrar: [],
  63. cooperationProjects: [],
  64. orgCode: props.data.orgCode,
  65. locationProvince: props.data.locationProvince,
  66. businessScope: props.data.businessScope,
  67. intendedProject: props.data.intendedProject,
  68. industryName: props.data.industry,
  69. nature: props.data.nature,
  70. natureOther: props.data.natureOther,
  71. }
  72. this.onChange = this.onChange.bind(this);
  73. this.onCancel = this.onCancel.bind(this);
  74. this.loadData = this.loadData.bind(this);
  75. this.onOk = this.onOk.bind(this);
  76. this.showInput = this.showInput.bind(this);
  77. this.handleInputConfirm = this.handleInputConfirm.bind(this);
  78. this.handleClose = this.handleClose.bind(this);
  79. this.handleCloseCooperation = this.handleCloseCooperation.bind(this);
  80. this.supervisor = this.supervisor.bind(this);
  81. this.onSelect = this.onSelect.bind(this);
  82. }
  83. onChange(type) {
  84. if (!this.props.data.level && this.props.data.level != 0) {
  85. Modal.warning({
  86. title: '系统提示',
  87. content: (
  88. <div>
  89. <p>请先设置客户类型。操作位置:</p>
  90. <p>1.勾选客户名称</p>
  91. <p>2.点击切换至“操作”项</p>
  92. <p>3.选择相应的客户类型即可。</p>
  93. </div>
  94. ),
  95. });
  96. return
  97. }
  98. this.setState({
  99. visible: true,
  100. changeType: type,
  101. })
  102. }
  103. onCancel() {
  104. this.setState({
  105. visible: false,
  106. loading: false,
  107. changeType: 0,
  108. dataArrar: []
  109. })
  110. }
  111. loadData() {
  112. this.setState({
  113. loading: true
  114. });
  115. $.ajax({
  116. method: "get",
  117. dataType: "json",
  118. crossDomain: false,
  119. url: globalConfig.context + "/api/admin/customer/listUserName",
  120. data: {
  121. uid: this.props.enterpriseId,
  122. },
  123. success: function (data) {
  124. if (data.error.length || data.data.list == "") {
  125. if (data.error && data.error.length) {
  126. message.warning(data.error[0].message);
  127. }
  128. } else {
  129. this.setState({
  130. initialName: data.data[0] ? data.data[0].name : ''
  131. })
  132. data.data.splice(0, 1);
  133. this.setState({
  134. dataSource: data.data,
  135. });
  136. }
  137. }.bind(this),
  138. }).always(
  139. function () {
  140. this.setState({
  141. loading: false,
  142. });
  143. }.bind(this)
  144. );
  145. }
  146. onOk() {
  147. const { dataArrar } = this.state;
  148. if (this.state.changeType === 3 && !/^[A-Z0-9]{15}$|^[A-Z0-9]{17}$|^[A-Z0-9]{18}$|^[A-Z0-9]{20}$/.test(dataArrar)) {
  149. message.warning('请输入正确的统一社会信用代码')
  150. return
  151. }
  152. if (this.state.changeType === 0 && dataArrar.length === 0) {
  153. message.warning('请输入省-市-区');
  154. return;
  155. }
  156. if (this.state.changeType === 1 && dataArrar.length === 0) {
  157. message.warning('请输入企业主管产品/服务');
  158. return;
  159. }
  160. if (this.state.changeType === 2 && dataArrar.length === 0) {
  161. message.warning('请输入意向合作项目');
  162. return;
  163. }
  164. if (this.state.changeType === 4 && dataArrar.length === 0) {
  165. message.warning('请选择企业行业');
  166. return
  167. }
  168. if (this.state.changeType === 5 && dataArrar.length === 0) {
  169. message.warning('请选择客户性质');
  170. return
  171. }
  172. this.setState({
  173. loading: true
  174. });
  175. let data = {
  176. uid: this.props.enterpriseId,
  177. }
  178. if (this.state.changeType === 0) {
  179. data.province = dataArrar[0] || undefined;
  180. data.city = dataArrar[1] || undefined;
  181. data.area = dataArrar[2] || undefined;
  182. }
  183. if (this.state.changeType === 1) {
  184. data.businessScope = dataArrar.join(',')
  185. }
  186. if (this.state.changeType === 2) {
  187. let arr = [];
  188. for (let i of dataArrar) {
  189. arr.push(i.label)
  190. }
  191. data.intendedProject = arr.join(',')
  192. }
  193. if (this.state.changeType === 3) {
  194. data.orgCode = dataArrar
  195. // this.props.onCancel();
  196. }
  197. if (this.state.changeType === 4) {
  198. data.industry = dataArrar
  199. }
  200. if (this.state.changeType === 5) {
  201. data.nature = dataArrar
  202. data.natureOther = this.state.natureOther
  203. }
  204. $.ajax({
  205. url: globalConfig.context + "/api/admin/customer/updateUserDate",
  206. method: "post",
  207. data: data
  208. }).done(
  209. function (data) {
  210. this.setState({
  211. loading: false
  212. });
  213. if (data.error.length === 0) {
  214. message.success("恭喜您,更改成功!");
  215. if (this.state.changeType === 0) {
  216. this.setState({
  217. locationProvince: getProvince(dataArrar[0], dataArrar[1], dataArrar[2])
  218. })
  219. }
  220. if (this.state.changeType === 1) {
  221. this.setState({
  222. businessScope: dataArrar.join(',')
  223. })
  224. }
  225. if (this.state.changeType === 2) {
  226. let arr = [];
  227. for (let i of dataArrar) {
  228. arr.push(i.label)
  229. }
  230. this.setState({
  231. intendedProject: arr.join(',')
  232. })
  233. }
  234. if (this.state.changeType === 3) {
  235. this.setState({
  236. orgCode: dataArrar
  237. })
  238. this.props.onCancel();
  239. }
  240. if (this.state.changeType === 4) {
  241. this.setState({
  242. industryName: getIndustry(dataArrar)
  243. })
  244. }
  245. if (this.state.changeType === 5) {
  246. this.setState({
  247. natureText: getNatureType(dataArrar, this.state.natureOther)
  248. })
  249. }
  250. this.onCancel();
  251. } else {
  252. message.warning(data.error[0].message);
  253. }
  254. }.bind(this)
  255. )
  256. }
  257. showInput() {
  258. let str = this.state.dataArrar.join('/')
  259. this.setState({
  260. inputVisible: true,
  261. inputValue: str
  262. });
  263. }
  264. handleInputConfirm() {
  265. let inputValue = this.state.inputValue;
  266. let arr = inputValue.split('/');
  267. let lv = true;
  268. for (let i of arr) {
  269. if (i.length > 16) {
  270. message.warning('单个标签字数不能超过16个字符')
  271. lv = false;
  272. return;
  273. }
  274. }
  275. if (lv) {
  276. arr = Array.from(new Set(arr));
  277. arr = arr.filter(v => v);
  278. this.setState({
  279. dataArrar: arr,
  280. inputVisible: false,
  281. inputValue: '',
  282. });
  283. }
  284. }
  285. handleClose(removedTag) {
  286. let dataArrar = this.state.dataArrar.filter(tag => { return tag !== removedTag });
  287. this.setState({ dataArrar });
  288. }
  289. handleCloseCooperation(removedTag) {
  290. let dataArrar = this.state.dataArrar.filter(tag => { return tag.value !== removedTag.value });
  291. this.setState({ dataArrar });
  292. }
  293. supervisor(value) {
  294. $.ajax({
  295. method: "get",
  296. dataType: "json",
  297. crossDomain: false,
  298. url: globalConfig.context + '/api/admin/order/getBusinessProjectByName',
  299. data: {
  300. businessName: value
  301. },
  302. success: function (data) {
  303. let thedata = data.data;
  304. if (data.error.length === 0) {
  305. this.setState({
  306. cooperationProjects: thedata,
  307. });
  308. } else {
  309. message.warning(data.error[0].message);
  310. }
  311. }.bind(this),
  312. }).always(
  313. function () {
  314. }.bind(this)
  315. );
  316. }
  317. onSelect(value) {
  318. let arr = this.state.cooperationProjects.filter(v => v.id === value);
  319. let arr1 = this.state.dataArrar.filter(v => v.value === value);
  320. if (arr.length > 0) {
  321. if (arr1.length > 0) {
  322. message.warning('选项已存在');
  323. } else {
  324. this.state.dataArrar.push({
  325. label: arr[0].bname,
  326. value: arr[0].id,
  327. })
  328. this.setState({
  329. dataArrar: this.state.dataArrar
  330. })
  331. }
  332. }
  333. }
  334. render() {
  335. return (
  336. <div style={{
  337. fontSize: 14,
  338. fontWeight: "bold",
  339. marginTop: 20,
  340. }}>
  341. <div style={{
  342. display: 'flex',
  343. alignItems: 'center',
  344. paddingBottom: '5px'
  345. }}>
  346. <div style={{ width: '123px', color: "#58A3FF" }}>统一社会信用代码:</div>
  347. <div style={{ color: "#58A3FF" }}>
  348. {
  349. !this.state.orgCode ? "待补充" : this.state.orgCode
  350. }
  351. </div>
  352. {this.props.type === 'modify' && <Button style={{ marginLeft: '5px' }} type="primary" onClick={(e) => { e.stopPropagation(); this.onChange(3) }}>修改</Button>}
  353. {this.props.type === 'modify' && <span style={{ color: "red", marginLeft: 20 }}>如,科德集团则填写91430105670766451M</span>}
  354. </div>
  355. <div style={{
  356. display: 'flex',
  357. alignItems: 'center',
  358. paddingBottom: '5px'
  359. }}>
  360. <div style={{ width: '123px' }}>省-市-区:</div>
  361. <div>
  362. {
  363. this.state.locationProvince
  364. }
  365. </div>
  366. {this.props.type === 'modify' && <Button style={{ marginLeft: '5px' }} type="primary" onClick={(e) => { e.stopPropagation(); this.onChange(0) }}>修改</Button>}
  367. </div>
  368. <div style={{
  369. display: 'flex',
  370. alignItems: 'center',
  371. paddingBottom: '5px'
  372. }}>
  373. <div style={{ width: '123px' }}>企业主营产品/服务:</div>
  374. <div>
  375. {
  376. this.state.businessScope
  377. }
  378. </div>
  379. {this.props.type === 'modify' && <Button style={{ marginLeft: '5px' }} type="primary" onClick={(e) => { e.stopPropagation(); this.onChange(1) }}>修改</Button>}
  380. </div>
  381. <div style={{
  382. display: 'flex',
  383. alignItems: 'center',
  384. paddingBottom: '5px'
  385. }}>
  386. <div style={{ width: '123px' }}>意向合作项目:</div>
  387. <div>
  388. {
  389. this.state.intendedProject
  390. }
  391. </div>
  392. {this.props.type === 'modify' && <Button style={{ marginLeft: '5px' }} type="primary" onClick={(e) => { e.stopPropagation(); this.onChange(2) }}>修改</Button>}
  393. </div>
  394. <div style={{
  395. display: 'flex',
  396. alignItems: 'center',
  397. paddingBottom: '5px'
  398. }}>
  399. <div style={{ width: '123px' }}>企业行业:</div>
  400. <div>
  401. {
  402. this.state.industryName
  403. }
  404. </div>
  405. {this.props.type === 'modify' && <Button style={{ marginLeft: '5px' }} type="primary" onClick={(e) => { e.stopPropagation(); this.onChange(4) }}>修改</Button>}
  406. </div>
  407. <div style={{
  408. display: 'flex',
  409. alignItems: 'center',
  410. paddingBottom: '5px'
  411. }}>
  412. <div style={{ width: '123px' }}>客户性质:</div>
  413. <div>
  414. {
  415. this.state.natureText
  416. }
  417. </div>
  418. {this.props.type === 'modify' && <Button style={{ marginLeft: '5px' }} type="primary" onClick={(e) => { e.stopPropagation(); this.onChange(5) }}>修改</Button>}
  419. </div>
  420. <Modal
  421. footer={null}
  422. maskClosable={false}
  423. width={this.props.type === 'journal' ? '1200px' : this.props.type === 'modify' ? '400px' : '800px'}
  424. title={this.props.type === 'journal' ? '操作日志' : this.props.type === 'modify' ? '信息修改' : ''}
  425. visible={this.state.visible}
  426. onCancel={this.onCancel}>
  427. <div>
  428. {this.props.type === 'modify' ?
  429. <div className='enterpriseNameContent'>
  430. <div className='enterpriseNameItem'>
  431. <div className='enterpriseNameTitle'>
  432. {
  433. this.state.changeType === 0 ? '省-市-区' :
  434. this.state.changeType === 1 ? '企业主管产品/服务' :
  435. this.state.changeType === 2 ? '意向合作项目' :
  436. this.state.changeType === 3 ? '统一社会信用代码' :
  437. this.state.changeType === 4 ? '企业行业' :
  438. this.state.changeType === 5 ? '客户性质' : ''
  439. }
  440. :
  441. </div>
  442. <div className='enterpriseNameValue'>
  443. {
  444. this.state.changeType === 0 ? this.state.locationProvince :
  445. this.state.changeType === 1 ? this.state.businessScope :
  446. this.state.changeType === 2 ? this.state.intendedProject :
  447. this.state.changeType === 3 ? this.state.orgCode :
  448. this.state.changeType === 4 ? this.state.industryName :
  449. this.state.changeType === 5 ? this.state.natureText : ''
  450. }
  451. </div>
  452. </div>
  453. <div className='enterpriseNameItem'>
  454. <div className='enterpriseNameTitle'>更改:</div>
  455. <div className='enterpriseNameValue'>
  456. {
  457. this.state.changeType === 0 ? <Cascader
  458. options={areaSelect()}
  459. placeholder="选择城市"
  460. onChange={(e, pre) => {
  461. this.setState({
  462. dataArrar: e
  463. })
  464. }}
  465. /> :
  466. this.state.changeType === 1 ?
  467. <div>
  468. <div>
  469. {this.state.dataArrar.map((tag) => {
  470. const isLongTag = tag.length > 20;
  471. const tagElem = (
  472. <Tag closable key={tag} afterClose={() => this.handleClose(tag)}>
  473. {isLongTag ? `${tag.slice(0, 20)}...` : tag}
  474. </Tag>
  475. );
  476. return isLongTag ? <Tooltip title={tag} key={tag}>{tagElem}</Tooltip> : tagElem;
  477. })}
  478. {
  479. !this.state.inputVisible &&
  480. <Button
  481. size="small"
  482. type="primary"
  483. onClick={this.showInput}>
  484. + 新增主营产品
  485. </Button>
  486. }
  487. </div>
  488. {this.state.inputVisible && (<div>
  489. <TextArea
  490. style={{ width: '300px', height: '100px' }}
  491. value={this.state.inputValue}
  492. onChange={(e) => {
  493. this.setState({
  494. inputValue: e.target.value
  495. })
  496. }} />
  497. <div style={{ color: '#f00' }}>提示:请用 / 符号隔开关键字</div>
  498. <div>
  499. <Button
  500. size="small"
  501. type="primary"
  502. onClick={this.handleInputConfirm}>
  503. 确定
  504. </Button>
  505. <Button
  506. size="small"
  507. style={{ marginLeft: '5px' }}
  508. onClick={() => {
  509. this.setState({
  510. inputVisible: false,
  511. inputValue: ''
  512. })
  513. }}>
  514. 取消
  515. </Button>
  516. </div>
  517. </div>)}
  518. </div>
  519. :
  520. this.state.changeType === 2 ?
  521. <div>
  522. <div style={{ paddingBottom: this.state.dataArrar.length === 0 ? 0 : '10px' }}>
  523. {this.state.dataArrar.map((tag, index) => {
  524. const isLongTag = tag.label.length > 20;
  525. const tagElem = (
  526. <Tag closable key={tag.label} afterClose={() => this.handleCloseCooperation(tag)}>
  527. {isLongTag ? `${tag.label.slice(0, 20)}...` : tag.label}
  528. </Tag>
  529. );
  530. return isLongTag ? <Tooltip title={tag.label} key={tag.label}>{tagElem}</Tooltip> : tagElem;
  531. })}
  532. </div>
  533. <div>
  534. <AutoComplete
  535. style={{ width: 200 }}
  536. onSearch={this.supervisor}
  537. onSelect={this.onSelect}
  538. placeholder="请输入关键字"
  539. >
  540. {
  541. this.state.cooperationProjects.map(function (item) {
  542. return <Select.Option key={item.id} value={item.id}>{item.bname}</Select.Option>
  543. })
  544. }
  545. </AutoComplete>
  546. </div>
  547. </div>
  548. :
  549. this.state.changeType === 3 ?
  550. <div>
  551. <div>
  552. <Input
  553. style={{ width: 200 }}
  554. placeholder="请输入统一社会信用代码"
  555. onChange={(e) => {
  556. this.setState({
  557. dataArrar: e.target.value
  558. })
  559. }}
  560. />
  561. </div>
  562. <div style={{ color: "red", position: "absolute" }}>如,科德集团则填写91430105670766451M</div>
  563. </div>
  564. : this.state.changeType === 4 ?
  565. <div>
  566. <Select
  567. style={{ width: 200 }}
  568. placeholder="请选择行业"
  569. onChange={e => {
  570. this.setState({
  571. dataArrar: e
  572. })
  573. }}
  574. >
  575. {
  576. industry.map(function (item) {
  577. return <Option key={item.value} value={item.value}>{item.key}</Option>
  578. })
  579. }
  580. </Select>
  581. </div>
  582. : this.state.changeType === 5 ?
  583. <div>
  584. <div>
  585. <Select
  586. style={{ width: 200 }}
  587. placeholder="请选择客户性质"
  588. onChange={e => {
  589. this.setState({
  590. dataArrar: e
  591. })
  592. }}
  593. >
  594. {
  595. natureList.map(function (item) {
  596. return <Option key={item.value} value={item.value}>{item.key}</Option>
  597. })
  598. }
  599. </Select>
  600. </div>
  601. {
  602. this.state.dataArrar === '0' &&
  603. <div>
  604. <TextArea
  605. style={{ width: '300px', height: '100px' }}
  606. placeholder='其他说明'
  607. value={this.state.natureOther}
  608. onChange={(e) => {
  609. this.setState({
  610. natureOther: e.target.value
  611. })
  612. }} />
  613. </div>
  614. }
  615. </div>
  616. : ''
  617. }
  618. </div>
  619. </div>
  620. </div> : this.props.type === 'journal' ?
  621. <div>
  622. <Spin spinning={this.state.loading} >
  623. <Table
  624. columns={this.state.colunmn}
  625. dataSource={this.state.dataSource}
  626. pagination={false}
  627. scroll={{ x: "max-content", y: 0 }}
  628. bordered
  629. size="small"
  630. />
  631. </Spin>
  632. </div> : null
  633. }
  634. {
  635. this.props.type === 'modify' ?
  636. <Popconfirm placement="top" title="确定要修改吗?" onConfirm={(e) => {
  637. e.stopPropagation();
  638. this.onOk();
  639. }} okText="确定" cancelText="取消">
  640. <Button type='primary'>
  641. 确定修改
  642. </Button>
  643. </Popconfirm> : null
  644. }
  645. </div>
  646. </Modal >
  647. </div >
  648. )
  649. }
  650. }
  651. export default InforChange;