contacts.jsx 8.9 KB

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