collection.jsx 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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:'3'
  12. };
  13. }
  14. loadData(page,nub){
  15. this.setState({
  16. loading:true,
  17. })
  18. axios.get('https://www.apiopen.top/satinApi',{
  19. params:{
  20. type:1,
  21. page:page
  22. }
  23. })
  24. .then(data=>{
  25. let thisdata=data.data.data;
  26. this.setState({
  27. loading:false,
  28. thisdata:thisdata,
  29. total:100
  30. })
  31. })
  32. .catch(error=>{
  33. message(error.error)
  34. })
  35. }
  36. componentWillMount(){
  37. this.loadData()
  38. }
  39. tabFun(e){
  40. this.setState({ nub: e.target.value })
  41. this.loadData(1,e.target.value)
  42. }
  43. //分页
  44. onShowSizeChange(current, pageSize){
  45. this.setState({
  46. current:current,
  47. pageSize:pageSize
  48. })
  49. this.loadData(current);
  50. }
  51. jump(item){
  52. console.log(item);
  53. }
  54. render() {
  55. const thisdata =this.state.thisdata || [];
  56. thisdata.length=8;
  57. return <div className="user-content">
  58. <div className="title" >
  59. 我的收藏
  60. </div>
  61. <div>
  62. <Radio.Group className="btnGroup" value={this.state.nub} onChange={this.tabFun.bind(this)}>
  63. <Radio.Button value="1">需求中心</Radio.Button>
  64. <Radio.Button value="2">技术市场</Radio.Button>
  65. <Radio.Button value="3">科技服务</Radio.Button>
  66. <Radio.Button value="4">模块名称</Radio.Button>
  67. </Radio.Group>
  68. </div>
  69. <div className="imgList">
  70. <Spin spinning={this.state.loading}>
  71. <Row>
  72. {thisdata.map((item,index)=>{
  73. return<Col span={6} key={index} onClick={(e)=>{this.jump(item)}}>
  74. <div className="img">
  75. <div className="imgHeader">
  76. <img src={item.cdn_img} alt=""/>
  77. <span className="new"></span>
  78. <div><p>{item.text}</p></div>
  79. </div>
  80. <p className="txt">{item.name}</p>
  81. </div>
  82. </Col>
  83. })
  84. }
  85. </Row>
  86. </Spin>
  87. {this.state.total&&<Pagination className="page" current={this.state.current} total={this.state.total} onChange={this.onShowSizeChange.bind(this)}/>}
  88. </div>
  89. </div>
  90. }
  91. }
  92. export default Collection;