contacts.jsx 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. /*
  2. @author:李霆
  3. @update:2018/05/29
  4. @descript:复制粘贴,拿起来就是干!!
  5. */
  6. import React from 'react';
  7. import './contacts.less';
  8. import { Row, Col, Button, Card, Input, Form, message, Spin } from 'antd';
  9. import ajax from 'jquery/src/ajax/xhr.js';
  10. import $ from 'jquery/src/ajax';
  11. const FormItem = Form.Item;
  12. class Contancts extends React.Component {
  13. constructor(props) {
  14. super(props);
  15. this.state = {
  16. loading: false,
  17. contactData: [
  18. {
  19. id: '12',
  20. edit: false,
  21. name: '李霆1',
  22. department: '平台事业发展',
  23. position: '前端',
  24. photo: '18320746285',
  25. mobile: '5551456',
  26. qq: '265478954',
  27. email: '125468@qq.com',
  28. remarks: '这是一段文字这是一段文字这是一段文字这是一段文字这是一段文字这是一段文字'
  29. },
  30. {
  31. id: '123',
  32. edit: false,
  33. name: '李霆2',
  34. department: '平台事业发展',
  35. position: '前端',
  36. photo: '18320746285',
  37. mobile: '5551456',
  38. qq: '265478954',
  39. email: '125468@qq.com',
  40. remarks: '这是一段文字这是一段文字这是一段文字这是一段文字这是一段文字这是一段文字'
  41. }
  42. ],
  43. oldData: [
  44. {
  45. id: '12',
  46. edit: false,
  47. name: '李霆1',
  48. department: '平台事业发展',
  49. position: '前端',
  50. photo: '18320746285',
  51. mobile: '5551456',
  52. qq: '265478954',
  53. email: '125468@qq.com',
  54. remarks: '这是一段文字这是一段文字这是一段文字这是一段文字这是一段文字这是一段文字'
  55. },
  56. {
  57. id: '123',
  58. edit: false,
  59. name: '李霆2',
  60. department: '平台事业发展',
  61. post: '前端',
  62. position: '18320746285',
  63. mobile: '5551456',
  64. qq: '265478954',
  65. email: '125468@qq.com',
  66. remarks: '这是一段文字这是一段文字这是一段文字这是一段文字这是一段文字这是一段文字'
  67. }
  68. ]
  69. };
  70. }
  71. loadData() {
  72. this.setState({
  73. loading: true
  74. });
  75. $.ajax({
  76. method: 'get',
  77. dataType: 'json',
  78. crossDomain: false,
  79. url: globalConfig.context + '/api/user/getUserContacts',
  80. data: {},
  81. success: function(data) {
  82. let theData=data.data,
  83. newData=[];
  84. if (data.error.length || data.data == '') {
  85. if (data.error && data.error.length) {
  86. message.warning(data.error[0].message);
  87. }
  88. } else {
  89. theData.map(item=>{
  90. newData.push({
  91. id: item.id,
  92. name: item.name,
  93. edit: false,
  94. department:item.department,
  95. position: item.position,
  96. mobile:item.mobile,
  97. qq: item.qq,
  98. email: item.email,
  99. remarks: item.remarks
  100. })
  101. })
  102. this.setState({
  103. contactData: newData,
  104. });
  105. }
  106. }.bind(this)
  107. }).always(
  108. function() {
  109. this.setState({
  110. loading: false
  111. });
  112. }.bind(this)
  113. );
  114. }
  115. //添加联系人
  116. addContact() {
  117. let contactData = this.state.contactData;
  118. contactData.push({
  119. id: '',
  120. name: '',
  121. edit: true,
  122. department: '',
  123. position: '',
  124. mobile: '',
  125. qq: '',
  126. email: '',
  127. remarks: ''
  128. });
  129. this.setState({ contactData });
  130. }
  131. //保存函数
  132. saveFun(item, index) {
  133. let contactData = this.state.contactData;
  134. if(!item.name||!item.mobile){
  135. message.warning('请填写带 * 号项!');
  136. return;
  137. }
  138. let api = item.id?'udpateUserContact':'/api/user/addUserContcat';
  139. this.setState({
  140. loading: true
  141. });
  142. $.ajax({
  143. method: 'post',
  144. dataType: 'json',
  145. url: globalConfig.context + api,
  146. data: {
  147. id: item.id||'',
  148. name: item.name,
  149. department: item.department,
  150. position: item.position,
  151. mobile: item.mobile,
  152. qq: item.qq,
  153. email: item.email,
  154. remarks: item.remarks
  155. }
  156. }).done(
  157. function(data) {
  158. this.setState({
  159. loading: false
  160. });
  161. if (!data.error.length) {
  162. message.success('操作成功!');
  163. this.loadData();
  164. } else {
  165. message.warning(data.error[0].message);
  166. }
  167. }.bind(this)
  168. );
  169. }
  170. //删除
  171. delFun(item, index) {
  172. let contactData = this.state.contactData;
  173. if (!item.id) {
  174. contactData.splice(index, 1);
  175. this.setState(contactData);
  176. message.success('删除成功');
  177. } else {
  178. this.setState({
  179. loading: true
  180. });
  181. $.ajax({
  182. method: 'get',
  183. dataType: 'json',
  184. url: globalConfig.context + '/api/user/deleteUserContact',
  185. data: {
  186. id: item.id
  187. }
  188. }).done(
  189. function(data) {
  190. this.setState({
  191. loading: false
  192. });
  193. if (!data.error.length) {
  194. message.success('删除成功!');
  195. this.loadData();
  196. } else {
  197. message.warning(data.error[0].message);
  198. }
  199. }.bind(this)
  200. );
  201. }
  202. }
  203. //编辑时
  204. editFun(item, index) {
  205. this.state.contactData[index].edit = true;
  206. this.setState({
  207. contactData: this.state.contactData
  208. });
  209. }
  210. componentWillMount() {
  211. this.loadData();
  212. }
  213. render() {
  214. const formItemLayout = {
  215. labelCol: {
  216. span: 6
  217. },
  218. wrapperCol: {
  219. span: 14
  220. }
  221. };
  222. return (
  223. <div className="contactWrap">
  224. <Spin spinning={this.state.loading}>
  225. <Row>
  226. <Col span={4} offset={1}>
  227. <h4>常用联系人</h4>
  228. </Col>
  229. <Col span={6} offset={8}>
  230. <Button size="large" type="primary" onClick={this.addContact.bind(this)}>
  231. 添加常用联系人
  232. </Button>
  233. </Col>
  234. </Row>
  235. {this.state.contactData.map((item, index) => {
  236. return (
  237. <Row className="card" key={index}>
  238. <Card>
  239. <Row>
  240. <Col span={6}>
  241. <FormItem {...formItemLayout} label="姓名">
  242. {item.edit && (
  243. <Input
  244. style={{ width: '90%' }}
  245. placeholder="联系人姓名"
  246. value={item.name}
  247. onChange={(e) => {
  248. (item.name = e.target.value),
  249. this.setState({ contactData: this.state.contactData });
  250. }}
  251. />
  252. )}
  253. {item.edit ? (
  254. <span className="color-red"> * </span>
  255. ) : (
  256. <span>{item.name}</span>
  257. )}
  258. </FormItem>
  259. </Col>
  260. <Col span={6}>
  261. <FormItem {...formItemLayout} label="部门">
  262. {item.edit ? (
  263. <Input
  264. style={{ width: '90%' }}
  265. placeholder="联系人部门"
  266. value={item.department}
  267. onChange={(e) => {
  268. (item.department = e.target.value),
  269. this.setState({ contactData: this.state.contactData });
  270. }}
  271. />
  272. ) : (
  273. <span>{item.department}</span>
  274. )}
  275. </FormItem>
  276. </Col>
  277. <Col span={6}>
  278. <FormItem {...formItemLayout} label="职务">
  279. {item.edit ? (
  280. <Input
  281. style={{ width: '90%' }}
  282. placeholder="联系人职务"
  283. value={item.position}
  284. onChange={(e) => {
  285. (item.position = e.target.value),
  286. this.setState({ contactData: this.state.contactData });
  287. }}
  288. />
  289. ) : (
  290. <span>{item.position}</span>
  291. )}
  292. </FormItem>
  293. </Col>
  294. <Col span={6}>
  295. <FormItem {...formItemLayout} label="联系电话">
  296. {item.edit && (
  297. <Input
  298. style={{ width: '90%' }}
  299. placeholder="联系人电话号码"
  300. value={item.mobile}
  301. onChange={(e) => {
  302. (item.mobile = e.target.value),
  303. this.setState({ contactData: this.state.contactData });
  304. }}
  305. />
  306. )}
  307. {item.edit ? (
  308. <span className="color-red"> * </span>
  309. ) : (
  310. <span>{item.mobile}</span>
  311. )}
  312. </FormItem>
  313. </Col>
  314. </Row>
  315. <Row>
  316. <Col span={6}>
  317. <FormItem {...formItemLayout} label="QQ">
  318. {item.edit ? (
  319. <Input
  320. style={{ width: '90%' }}
  321. placeholder="联系人QQ"
  322. value={item.qq}
  323. onChange={(e) => {
  324. (item.qq = e.target.value),
  325. this.setState({ contactData: this.state.contactData });
  326. }}
  327. />
  328. ) : (
  329. <span>{item.qq}</span>
  330. )}
  331. </FormItem>
  332. </Col>
  333. <Col span={6}>
  334. <FormItem {...formItemLayout} label="邮箱">
  335. {item.edit ? (
  336. <Input
  337. style={{ width: '90%' }}
  338. placeholder="联系人电子邮箱"
  339. value={item.email}
  340. onChange={(e) => {
  341. (item.email = e.target.value),
  342. this.setState({ contactData: this.state.contactData });
  343. }}
  344. />
  345. ) : (
  346. <span>{item.email}</span>
  347. )}
  348. </FormItem>
  349. </Col>
  350. </Row>
  351. <Row>
  352. <Col span={18}>
  353. <FormItem labelCol={{ span: 2 }} wrapperCol={{ span: 20 }} label="备注">
  354. {item.edit ? (
  355. <Input
  356. type="textarea"
  357. placeholder="输入备注"
  358. rows={4}
  359. value={item.remarks}
  360. onChange={(e, pre) => {
  361. (item.remarks = e.target.value),
  362. this.setState({ contactData: this.state.contactData });
  363. }}
  364. />
  365. ) : (
  366. <span>{item.remarks}</span>
  367. )}
  368. </FormItem>
  369. </Col>
  370. <Col span={6}>
  371. {!item.edit ? (
  372. <Button
  373. type="primary"
  374. icon="edit"
  375. size="large"
  376. style={{ marginRight: 20 }}
  377. onClick={() => {
  378. this.editFun(item, index);
  379. }}
  380. />
  381. ) : (
  382. <Button
  383. type="primary"
  384. size="large"
  385. style={{ marginRight: 20 }}
  386. onClick={() => {
  387. this.saveFun(item, index);
  388. }}
  389. >
  390. 保存
  391. </Button>
  392. )}
  393. <Button
  394. type="danger"
  395. size="large"
  396. onClick={() => {
  397. this.delFun(item, index);
  398. }}
  399. >
  400. 删除
  401. </Button>
  402. </Col>
  403. </Row>
  404. </Card>
  405. </Row>
  406. );
  407. })}
  408. </Spin>
  409. </div>
  410. );
  411. }
  412. }
  413. export default Contancts;