account.jsx 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  1. /*
  2. @author:李霆
  3. @update:2018/05/29
  4. @descript:复制粘贴,拿起来就是干!!
  5. */
  6. import React from 'react';
  7. import ajax from 'jquery/src/ajax/xhr.js';
  8. import $ from 'jquery/src/ajax';
  9. import { Row, Col, Form, Button, Spin, message, Modal, Input } from 'antd';
  10. import './account.less';
  11. const FormItem = Form.Item;
  12. class Account extends React.Component {
  13. constructor(props) {
  14. super(props);
  15. this.state = {
  16. loading: false,
  17. visible: false,
  18. editState: false,
  19. name: 'liting',
  20. followTime: '2010/09/18',
  21. contactMobile: '18320747565'
  22. };
  23. }
  24. loadData() {
  25. this.setState({
  26. loading: true
  27. });
  28. $.ajax({
  29. method: 'post',
  30. dataType: 'json',
  31. crossDomain: false,
  32. url: globalConfig.context + '/api/admin/customer/shuju',
  33. data: {},
  34. success: function(data) {
  35. if (data.error.length || data.data == '') {
  36. if (data.error && data.error.length) {
  37. message.warning(data.error[0].message);
  38. }
  39. } else {
  40. this.setState({
  41. id: data.data.id,
  42. name: data.data.name,
  43. photo: data.data.photo,
  44. email: data.data.email,
  45. nickname: data.data.nickname,
  46. accountData: data.data
  47. });
  48. }
  49. }.bind(this)
  50. }).always(
  51. function() {
  52. this.setState({
  53. loading: false
  54. });
  55. }.bind(this)
  56. );
  57. }
  58. //修改密码
  59. passFun() {
  60. this.setState({
  61. visible: true,
  62. password: '',
  63. repeatPass: ''
  64. });
  65. }
  66. //企业认证
  67. companyFun() {}
  68. //个人认证
  69. personFun() {}
  70. //修改密码
  71. passSubmit() {
  72. if (!this.state.name) {
  73. message.warning('请填写昵称!');
  74. return;
  75. }
  76. if (!this.state.password) {
  77. message.warning('请填写新密码!');
  78. return;
  79. }
  80. if (this.state.password !== this.state.repeatPass) {
  81. message.warning('两次输入的密码不一致!');
  82. }
  83. this.setState({
  84. loading: true
  85. });
  86. $.ajax({
  87. method: 'POST',
  88. dataType: 'json',
  89. crossDomain: false,
  90. url: globalConfig.context + '/api/user/mobile',
  91. data: {
  92. mobile: this.state.mobile,
  93. mobileCode: this.state.mcode,
  94. password: this.state.password,
  95. name: this.state.name
  96. }
  97. }).done(
  98. function(data) {
  99. if (!data.error.length) {
  100. this.setState({
  101. visible: false
  102. });
  103. message.success('修改成功!');
  104. this.loadData();
  105. } else {
  106. message.warning(data.error[0].message);
  107. }
  108. }.bind(this)
  109. );
  110. }
  111. handleOk() {
  112. this.passSubmit();
  113. }
  114. handleCancel() {
  115. this.setState({
  116. visible: false
  117. });
  118. }
  119. //单个修改
  120. btnFun(item) {
  121. switch (item) {
  122. case 1:
  123. this.setState({ editName: true });
  124. setTimeout(()=>{this.refs.name.focus()},10)
  125. break;
  126. case 2:
  127. this.setState({ editPhoto: true });
  128. setTimeout(()=>{this.refs.photo.focus()},10)
  129. break;
  130. case 3:
  131. this.setState({ editEmail: true });
  132. setTimeout(()=>{this.refs.email.focus()},10)
  133. break;
  134. case 4:
  135. this.setState({ editNickname: true });
  136. setTimeout(()=>{this.refs.nickname.focus()},10)
  137. break;
  138. }
  139. this.enterFun(item);
  140. }
  141. //保存单个修改
  142. saveFun(item) {
  143. $.ajax({
  144. method: 'POST',
  145. dataType: 'json',
  146. crossDomain: false,
  147. url: globalConfig.context + '/api/user/mobile',
  148. data: {
  149. id: this.state.id,
  150. name: this.state.name,
  151. photo: this.state.photo,
  152. email: this.state.email,
  153. nickname: this.state.nickname
  154. }
  155. }).done(
  156. function(data) {
  157. if (!data.error.length) {
  158. this.setState({
  159. visible: false
  160. });
  161. message.success('修改成功!');
  162. switch (item) {
  163. case 1:
  164. this.setState({ editName: false });
  165. break;
  166. case 2:
  167. this.setState({ editPhoto: false });
  168. break;
  169. case 3:
  170. this.setState({ editEmail: false });
  171. break;
  172. case 4:
  173. this.setState({ editNickname: false });
  174. break;
  175. }
  176. this.loadData();
  177. } else {
  178. message.warning(data.error[0].message);
  179. }
  180. }.bind(this)
  181. );
  182. }
  183. //按下键盘回车键时保存
  184. enterFun(item) {
  185. if(item){
  186. document.onkeydown=function(e){ //对整个页面文档监听回车键
  187. var keyNum=window.event ? e.keyCode :e.which;
  188. if(keyNum==13){
  189. this.saveFun(item);
  190. }
  191. }.bind(this)
  192. }
  193. }
  194. componentWillMount(){
  195. this.loadData();
  196. }
  197. render() {
  198. const formItemLayout = {
  199. labelCol: { span: 8 },
  200. wrapperCol: { span: 10 }
  201. };
  202. const formItemLayoutBtn = {
  203. labelCol: { span: 8 },
  204. wrapperCol: { span: 6 }
  205. };
  206. const accountData = this.state.account || [];
  207. return (
  208. <div className="account-wrap">
  209. <div className="clearfix">
  210. <Spin spinning={this.state.loading}>
  211. <Row>
  212. <Col span={8}>
  213. <FormItem className="half-mid" {...formItemLayout} label="注册账号">
  214. <span>{accountData.account}</span>
  215. <Button
  216. size="default"
  217. onClick={this.passFun.bind(this)}
  218. type="primary"
  219. className="Authentication"
  220. >
  221. 修改密码
  222. </Button>
  223. </FormItem>
  224. </Col>
  225. </Row>
  226. <Row>
  227. <Col span={8}>
  228. <FormItem className="half-mid" {...formItemLayout} label="注册名称">
  229. {this.state.editName ? (
  230. <Input
  231. value={this.state.name}
  232. onBlur={(e) => {
  233. this.saveFun(1);
  234. }}
  235. ref="name"
  236. placeholder="请填写注册名称"
  237. onChange={(e) => {
  238. this.setState({ name: e.target.value });
  239. }}
  240. />
  241. ) : (
  242. <span>{this.state.name}</span>
  243. )}
  244. {this.state.editName ? (
  245. ''
  246. ) : (
  247. <Button
  248. className="Authentication"
  249. onClick={(e) => {
  250. this.btnFun(1);
  251. }}
  252. icon="edit"
  253. />
  254. )}
  255. </FormItem>
  256. </Col>
  257. </Row>
  258. <Row>
  259. <Col span={8}>
  260. <FormItem className="half-mid" {...formItemLayout} label="注册手机号">
  261. {this.state.editPhoto ? (
  262. <Input
  263. value={this.state.photo}
  264. onBlur={(e) => {
  265. this.saveFun(2);
  266. }}
  267. ref="photo"
  268. placeholder="请填写注册手机号码"
  269. onChange={(e) => {
  270. this.setState({ photo: e.target.value });
  271. }}
  272. />
  273. ) : (
  274. <span>{this.state.photo}</span>
  275. )}
  276. {this.state.editPhoto ? (
  277. ''
  278. ) : (
  279. <Button
  280. className="Authentication"
  281. onClick={(e) => {
  282. this.btnFun(2);
  283. }}
  284. icon="edit"
  285. />
  286. )}
  287. </FormItem>
  288. </Col>
  289. <Col span={8}>
  290. <FormItem className="half-mid" {...formItemLayout} label="注册邮箱">
  291. {this.state.editEmail ? (
  292. <Input
  293. value={this.state.email}
  294. onBlur={(e) => {
  295. this.saveFun(3);
  296. }}
  297. ref="email"
  298. placeholder="请填写注册邮箱"
  299. onChange={(e) => {
  300. this.setState({ email: e.target.value });
  301. }}
  302. />
  303. ) : (
  304. <span>{this.state.email}</span>
  305. )}
  306. {this.state.editEmail ? (
  307. ''
  308. ) : (
  309. <Button
  310. className="Authentication"
  311. onClick={(e) => {
  312. this.btnFun(3);
  313. }}
  314. icon="edit"
  315. />
  316. )}
  317. </FormItem>
  318. </Col>
  319. <Col span={8}>
  320. <FormItem className="half-mid" {...formItemLayout} label="账号昵称">
  321. {this.state.editNickname ? (
  322. <Input
  323. value={this.state.nickname}
  324. onBlur={(e) => {
  325. this.saveFun(4);
  326. }}
  327. ref="nickname"
  328. placeholder="请填写账号昵称"
  329. onChange={(e) => {
  330. this.setState({ nickname: e.target.value });
  331. }}
  332. />
  333. ) : (
  334. <span>{this.state.nickname}</span>
  335. )}
  336. {this.state.editNickname ? (
  337. ''
  338. ) : (
  339. <Button
  340. className="Authentication"
  341. onClick={(e) => {
  342. this.btnFun(4);
  343. }}
  344. icon="edit"
  345. />
  346. )}
  347. </FormItem>
  348. </Col>
  349. </Row>
  350. <Row>
  351. <Col span={8}>
  352. <FormItem className="half-mid" {...formItemLayout} label="账号类型">
  353. <span>{this.state.contacts}</span>
  354. </FormItem>
  355. </Col>
  356. <Col span={8}>
  357. <FormItem className="half-mid" {...formItemLayout} label="账号状态">
  358. <span>{this.state.contacts}</span>
  359. </FormItem>
  360. </Col>
  361. <Col span={8}>
  362. <FormItem className="half-mid" {...formItemLayout} label="注册时间">
  363. <span>{this.state.contacts}</span>
  364. </FormItem>
  365. </Col>
  366. </Row>
  367. {/* <Row>
  368. <Col span={8}>
  369. <FormItem className="half-mid" {...formItemLayout} label="企业实名认证">
  370. <span>{accountData.account}</span>
  371. <Button
  372. size="default"
  373. onClick={this.companyFun.bind(this)}
  374. type="primary"
  375. className="Authentication"
  376. >
  377. 立即企业认证
  378. </Button>
  379. </FormItem>
  380. </Col>
  381. <Col span={16}>
  382. <span className="danger">实行企业实名认证后,您将享受到技淘网提供的全方位的科技咨询服务</span>
  383. </Col>
  384. </Row>
  385. <Row>
  386. <Col span={8}>
  387. <FormItem className="half-mid" {...formItemLayout} label="个人实名认证">
  388. <span>{accountData.account}</span>
  389. <Button
  390. size="default"
  391. onClick={this.companyFun.bind(this)}
  392. type="primary"
  393. className="Authentication"
  394. >
  395. 立即个人认证
  396. </Button>
  397. </FormItem>
  398. </Col>
  399. <Col span={16}>
  400. <span className="danger">实行个人实名认证后,您将享受技淘网提供的全方位的知识产权运营服务</span>
  401. </Col>
  402. </Row> */}
  403. <Row>
  404. <Col span={8}>
  405. <FormItem className="half-mid" {...formItemLayout} label="科技专家认证">
  406. <span>{accountData.account}</span>
  407. <Button
  408. size="default"
  409. onClick={this.companyFun.bind(this)}
  410. type="primary"
  411. className="Authentication"
  412. >
  413. 立即申请专家
  414. </Button>
  415. </FormItem>
  416. </Col>
  417. <Col span={16}>
  418. <span className="danger">实行科技专家认证后,您将成为技淘网的科技服务专家,为其他用户提供科技咨询服务</span>
  419. </Col>
  420. </Row>
  421. </Spin>
  422. </div>
  423. <Modal
  424. title="修改密码"
  425. width="600px"
  426. visible={this.state.visible}
  427. onOk={this.handleOk.bind(this)}
  428. onCancel={this.handleCancel.bind(this)}
  429. >
  430. <div>
  431. <Form layout="horizontal" id="demand-form" onSubmit={this.passSubmit}>
  432. <Spin spinning={this.state.loading}>
  433. <div className="clearfix">
  434. <FormItem
  435. labelCol={{ span: 8 }}
  436. wrapperCol={{ span: 8 }}
  437. className="half-mid"
  438. label="注册账号"
  439. >
  440. <span>{this.state.followTime}</span>
  441. </FormItem>
  442. <FormItem
  443. labelCol={{ span: 8 }}
  444. wrapperCol={{ span: 8 }}
  445. className="half-mid"
  446. label="注册名称"
  447. >
  448. <Input
  449. value={this.state.name}
  450. type="text"
  451. onChange={(e) => {
  452. this.setState({ name: e.target.value });
  453. }}
  454. />
  455. </FormItem>
  456. <FormItem
  457. labelCol={{ span: 8 }}
  458. wrapperCol={{ span: 8 }}
  459. className="half-mid"
  460. label="新密码"
  461. >
  462. <Input
  463. value={this.state.password}
  464. type="password"
  465. placeholder="请输入新密码"
  466. onChange={(e) => {
  467. this.setState({ password: e.target.value });
  468. }}
  469. />
  470. </FormItem>
  471. <FormItem
  472. labelCol={{ span: 8 }}
  473. wrapperCol={{ span: 8 }}
  474. className="half-mid"
  475. label="新密码确认"
  476. >
  477. <Input
  478. value={this.state.repeatPass}
  479. type="password"
  480. placeholder="请再次输入新密码"
  481. onChange={(e) => {
  482. this.setState({ repeatPass: e.target.value });
  483. }}
  484. />
  485. </FormItem>
  486. </div>
  487. </Spin>
  488. </Form>
  489. </div>
  490. </Modal>
  491. </div>
  492. );
  493. }
  494. }
  495. export default Account;