account.jsx 13 KB

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