follow.jsx 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. import React, { Component } from 'react';
  2. import { Button,Radio ,message,Row,Col, Spin,Pagination} from 'antd';
  3. import axios from 'axios';
  4. import './collection.less';
  5. class Collection extends Component {
  6. constructor(props) {
  7. super(props);
  8. this.state = {
  9. loading:false,
  10. current:1,
  11. nub:'1'
  12. };
  13. }
  14. //服务
  15. loadDataService(page){
  16. this.setState({
  17. loading:true,
  18. })
  19. let url = globalConfig.context + '/api/user/portal/listInterestedInExpert'
  20. axios.get(url,{
  21. params:{
  22. pageNo:page||1,
  23. pageSize:8
  24. }
  25. })
  26. .then(data=>{
  27. let theData=data.data.data,
  28. theArr = [],
  29. times = new Date().getTime(),
  30. days = parseInt(times / (1000 * 60 * 60 * 24));
  31. if (!data.data || !data.data.data.list) {
  32. if (data.data.error && data.data.error.length) {
  33. message.warning(data.data.error[0].message);
  34. };
  35. } else {
  36. console.log(theData)
  37. for (let i = 0; i < theData.list.length; i++) {
  38. let thisdata = theData.list[i],
  39. create = parseInt(thisdata.createTime / (1000 * 60 * 60 * 24));
  40. let newState = (days-create)<7?true:false;
  41. theArr.push({
  42. key: i,
  43. id: thisdata.uid,
  44. name:thisdata.username,
  45. introduce:thisdata.introduction&&thisdata.introduction.length>40?thisdata.introduction.substr(0,40)+'...':'',
  46. img: thisdata.headPortraitUrl, //编号
  47. });
  48. };
  49. };
  50. this.setState({
  51. loading:false,
  52. dataList:theArr,
  53. total:data.data.data.totalCount
  54. })
  55. })
  56. }
  57. componentWillMount(){
  58. this.loadDataService(1)
  59. }
  60. tabFun(e){
  61. this.setState({ nub: e.target.value })
  62. switch(e.target.value){
  63. case '1':
  64. this.loadDataService(1)
  65. break;
  66. }
  67. }
  68. //分页
  69. onShowSizeChange(current, pageSize){
  70. this.setState({
  71. current:current,
  72. pageSize:pageSize
  73. })
  74. }
  75. jump(item){
  76. let url='';
  77. switch(this.state.nub){
  78. case '1':
  79. url = globalConfig.context+`/portal/subscriberDetail.html?uid=${item.id}&type=0`;
  80. break;
  81. }
  82. window.open(url);
  83. }
  84. render() {
  85. const dataList =this.state.dataList || [];
  86. return <div className="user-content">
  87. <div className="title" >
  88. 我的关注
  89. </div>
  90. {/* <div>
  91. <Radio.Group className="btnGroup" value={this.state.nub} onChange={this.tabFun.bind(this)}>
  92. <Radio.Button value="1">智者</Radio.Button>
  93. </Radio.Group>
  94. </div> */}
  95. <div className="imgList">
  96. <Spin spinning={this.state.loading}>
  97. {dataList.length?<Row>
  98. {dataList.map((item,index)=>{
  99. return<Col span={6} key={index} onClick={(e)=>{this.jump(item)}}>
  100. <div className="img">
  101. <div className="imgHeader">
  102. <div className="imgBj">
  103. {item.img?<img src={globalConfig.avatarHost+'/upload'+item.img} alt=""/>:''}
  104. </div>
  105. <div className="divP"><p>{item.introduce?item.introduce:'暂无'}</p></div>
  106. </div>
  107. <p className="txt">{item.name?item.name:'佚名'}</p>
  108. </div>
  109. </Col>
  110. })
  111. }
  112. </Row>:
  113. <Row style={{color:'#333'}}>暂无数据</Row>}
  114. </Spin>
  115. {this.state.total?<Pagination className="page" pageSize={8} current={this.state.current} total={this.state.total} onChange={this.onShowSizeChange.bind(this)}/>:''}
  116. </div>
  117. </div>
  118. }
  119. }
  120. export default Collection;