天天看點

好客租房124-最新資訊及解決tabber遮擋bug

import React from 'react'
import axios from 'axios'
//留白
import { Carousel, Flex, Grid, WingBlank } from 'antd-mobile'
import Nav1 from '../../assets/images/nav-1.png'
import Nav2 from '../../assets/images/nav-2.png'
import Nav3 from '../../assets/images/nav-3.png'
import Nav4 from '../../assets/images/nav-4.png'

import Body1 from '../../assets/images/1.png'
import Body2 from '../../assets/images/2.png'
import Body3 from '../../assets/images/3.png'
import Body4 from '../../assets/images/4.png'
//導入樣式
import './index.scss'

const navs = [
  {
    id: 1,
    img: Nav1,
    title: '整租',
    path: '/home/list',
  },
  {
    id: 2,
    img: Nav2,
    title: '合租',
    path: '/home/list',
  },
  {
    id: 3,
    img: Nav3,
    title: '地圖找房',
    path: '/home/list',
  },
  {
    id: 4,
    img: Nav4,
    title: '去出租',
    path: '/home/list',
  },
]
const data = Array.from(new Array(4)).map((_val, i) => ({
  icon: `Body${i + 1}`,
  text: `name${i}`,
}))
// 輪播圖不會自動播放  資料傳回過來的時候高度不夠 資料加載前後資料的問題
class Index extends React.Component {
  state = {
    data: ['1', '2', '3'],
    imgHeight: 212,
    isSwiperLoding: false,
    groups: [],
    swiper: [],
    news: [],
  }
  componentDidMount() {
    // simulate img loading
    this.getGroups()
    this.getSwipers()
    this.getNews()
    setTimeout(() => {
      this.setState({
        data: [
          'AiyWuByWklrrUDlFignR',
          'TekJlZRVCjLFexlOCuWn',
          'IJOtIlfsYdTyaDTRVrLI',
        ],
        isSwiperLoding: true,
      })
    }, 100)
  }
  // 擷取最新資訊
  async getNews() {
    const res = await axios.get(
      'http://localhost:8080/home/news?area=AREA%7C88cff55c-aaa4-e2e0'
    )
    console.log('最新資訊資料為:', res)
    this.setState({
      news: res.data.body,
    })
  }
  async getSwipers() {
    const res = await axios.get('http://localhost:8080/home/swiper')
    console.log('輪播如資料為:', res)
    this.setState({
      swiper: res.data.body,
    })
  }
  async getGroups() {
    const res = await axios.get('http://localhost:8080/home/groups', {
      params: {
        area: 'AREA%7C88cff55c-aaa4-e2e0',
      },
    })
    console.log('小組資料為:', res)
    this.setState({
      groups: res.data.body,
    })
  }

  //渲染輪播圖的方法
  renderSwipers() {
    return this.state.swiper.map((val) => (
      <a
        key={val.id}
        href="http://www.alipay.com"
        style={{
          display: 'inline-block',
          width: '100%',
          height: this.state.imgHeight,
        }}
      >
        <img
          src={`http://localhost:8080${val.imgSrc}`}
          alt=""
          style={{ width: '100%', verticalAlign: 'top' }}
          onLoad={() => {
            // fire window resize event to change height
            window.dispatchEvent(new Event('resize'))
            this.setState({ imgHeight: 'auto' })
          }}
        />
      
    ))
  }
  //渲染最新資訊
  renderNews() {
    console.log(this.state.news, 'newsssss')
    return this.state.news.map((item) => (
      

        

          
                      

            className="img"
            src={`http://localhost:8080${item.imgSrc}`}
            alt=""
          />
        </div>
        <Flex className="content" direction="column" justify="between">
          <h3 className="title">{item.title}</h3>
          <Flex className="info" justify="between">
            <pan>{item.from}</pan>
            <pan>{item.date}</pan>
          </Flex>
        </Flex>
      </div>
    ))
  }
  //渲染導航菜單
  renderNavs() {
    return navs.map((item) => (
      <Flex.Item
        key={item.id}
        onClick={() => {
          this.props.history.push(item.path)
        }}
      >
        <img src={item.img} alt="" />
        <h2>{item.title}</h2>
      </Flex.Item>
    ))
  }
  //渲染資訊

  render() {
    return (
      //留白 WingBlank
      <div className="index">
        <div className="swiper">
          {this.state.isSwiperLoding === true ? (
            <Carousel
              //自動播放
              autoplay={true}
              infinite
              //   beforeChange={(from, to) => console.log(`slide from ${from} to ${to}`)}
              //   afterChange={index => console.log('slide to', index)}
            >
              {this.renderSwipers()}
            </Carousel>
          ) : (
            ''
          )}
        </div>

        <Flex square={false} className="nav">
          {this.renderNavs()}
        </Flex>
        {/* 租房小組 */}
        <div className="group">
          <h3 className="group-title">
            租房小組:<span className="more">更多</span>
          </h3>
          {/* 宮格元件 */}
          <Grid
            data={this.state.groups}
            columnNum={2}
            square={false}
            hasLine={false}
            renderItem={(item) => (
              <Flex
                className="group-item"
                justify="around"
                key={item.id}
              >
                <div className="desc">
                  <p className="title">{item.title}</p>
                  <span className="info">{item.desc}</span>
                </div>
                <img
                  src={`http://localhost:8080${item.imgSrc}`}
                  alt=""
                />
              
            )}
          />
        

        

                  

最新資訊

{this.renderNews()} ) } } export default Index

總結

此處隻貼出部分代碼 詳情關注微信公衆号