vue移動端下拉刷新、上拉加載

由于自身的項目比較簡單忿磅,只有幾個H5頁面郑兴,用來嵌入app中,所有沒有引入移動端的UI框架贝乎,但是介于能讓用戶在瀏覽H5頁面時有下拉刷新和上拉加載情连,有更好的用戶體驗,自己寫組件實現(xiàn)览效。

1却舀、下拉刷新DropDownRefresh.vue

<template lang="html">
    <div class="refresh-moudle" @touchstart="touchStart($event)" @touchmove="touchMove($event)" @touchend="touchEnd($event)" :style="{transform: 'translate3d(0,' + top + 'px, 0)'}">
      <header class="pull-refresh">
        <slot name="pull-refresh">
          <div class="down-tip" v-if="dropDownState==1">
            <img v-if="dropDownInfo.downImg" class="down-img" :src="require('../../assets/images/refreshAndReload/'+dropDownInfo.downImg)">
            <span class="down-text">{{dropDownInfo.downText}}</span>
          </div>
          <div class="up-tip" v-if="dropDownState==2">
            <img v-if="dropDownInfo.upImg" class="up-img" :src="require('../../assets/images/refreshAndReload/'+dropDownInfo.upImg)">
            <span class="up-text">{{dropDownInfo.upText}}</span>
          </div>
          <div class="refresh-tip" v-if="dropDownState==3">
            <img v-if="dropDownInfo.refreshImg" class="refresh-img" :src="require('../../assets/images/loading/'+dropDownInfo.refreshImg)">
            <span class="refresh-text">{{dropDownInfo.refreshText}}</span>
          </div>
        </slot>
      </header>
      <slot></slot>
    </div>
</template>
<script>
export default {
  props: {
    onRefresh: {
      type: Function,
      required: false
    }
  },
  data () {
    return {
      defaultOffset: 50, // 默認高度, 相應的修改.releshMoudle的margin-top和.down-tip, .up-tip, .refresh-tip的height
      top: 0,
      scrollIsToTop: 0,
      startY: 0,
      isDropDown: false, // 是否下拉
      isRefreshing: false, // 是否正在刷新
      dropDownState: 1, // 顯示1:下拉可以刷新, 2:松開立即刷新, 3:正在刷新數(shù)據(jù)中...
      dropDownInfo: {
        downText: '下拉可以刷新',
        downImg: 'arrow.png',
        upText: '松開立即刷新',
        upImg: 'arrow.png',
        refreshText: '正在刷新數(shù)據(jù)...',
        refreshImg: 'loading.png'
      }
    }
  },
  created () {
    if (document.querySelector('.down-tip')) {
      // 獲取不同手機的物理像素(dpr),以便適配rem
      this.defaultOffset = document.querySelector('.down-tip').clientHeight || this.defaultOffset
    }
  },
  methods: {
    /**
     * 觸摸開始,手指點擊屏幕時
     * @param {object} e Touch 對象包含的屬性
     */
    touchStart (e) {
      this.startY = e.targetTouches[0].pageY
    },

    /**
     * 接觸點改變锤灿,滑動時
     * @param {object} e Touch 對象包含的屬性
     */
    touchMove (e) {
      this.scrollIsToTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop // safari 獲取scrollTop用window.pageYOffset
      if (e.targetTouches[0].pageY > this.startY) {
        // 下拉
        this.isDropDown = true
        if (this.scrollIsToTop === 0 && !this.isRefreshing) {
          // 拉動的距離
          let diff = e.targetTouches[0].pageY - this.startY - this.scrollIsToTop
          this.top = Math.pow(diff, 0.8) + (this.dropDownState === 3 ? this.defaultOffset : 0)
          if (this.top >= this.defaultOffset) {
            this.dropDownState = 2
            e.preventDefault()
          } else {
            this.dropDownState = 1
            // 去掉會導致ios無法刷新
            e.preventDefault()
          }
        }
      } else {
        this.isDropDown = false
        this.dropDownState = 1
      }
    },

    /**
     * 觸摸結(jié)束挽拔,手指離開屏幕時
     * @param {object} e Touch 對象包含的屬性
     */
    touchEnd (e) {
      if (this.isDropDown && !this.isRefreshing) {
        if (this.top >= this.defaultOffset) {
          // do refresh
          this.refresh()
          this.isRefreshing = true
        } else {
          // cancel refresh
          this.isRefreshing = false
          this.isDropDown = false
          this.dropDownState = 1
          this.top = 0
        }
      }
    },

    /**
     * 刷新
     */
    refresh () {
      this.dropDownState = 3
      this.top = this.defaultOffset
      // 這是全是靜態(tài)數(shù)據(jù),延時1200毫秒,給用戶一個刷新的感覺但校,如果是接口數(shù)據(jù)的話螃诅,直接調(diào)接口即可
      setTimeout(() => {
        this.onRefresh(this.refreshDone)
      }, 1200)
    },

    /**
     * 刷新完成
     */
    refreshDone () {
      this.isRefreshing = false
      this.isDropDown = false
      this.dropDownState = 1
      this.top = 0
    }
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.refresh-moudle {
  width: 100%;
  margin-top: -100px;
  -webkit-overflow-scrolling: touch; /* ios5+ */
}

.pull-refresh {
  width: 100%;
  color: #999;
  transition-duration: 200ms;
  font-size: 24px;
}

.refresh-moudle .down-tip,
.up-tip,
.refresh-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.down-img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
  transform: rotate(0deg);
  animation: anticlockwise 0.8s ease;
}

@keyframes anticlockwise {
  0% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.up-img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
  transform: rotate(180deg);
  animation: clockwise 0.8s ease;
}

@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-180deg);
  }
}

.refresh-img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
  animation: rotating 1.5s linear infinite;
}

@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}
</style>

2、上拉加載PullUpReload.vue

<template lang="html">
  <div class="load-moudle" @touchstart="touchStart($event)" @touchmove="touchMove($event)" @touchend="touchend($event)">
    <slot></slot>
    <footer class="load-more">
      <slot name="load-more">
        <div class="more-tip" v-if="pullUpState==1">
          <span class="more-text">{{pullUpInfo.moreText}}</span>
        </div>
        <div class="loading-tip" v-if="pullUpState==2">
          <span class="loading-icon"></span>
          <span class="loading-text">{{pullUpInfo.loadingText}}</span>
        </div>
        <div class="no-more-tip" v-if="pullUpState==3">
          <span class="connecting-line"></span>
          <span class="no-more-text">{{pullUpInfo.noMoreText}}</span>
          <span class="connecting-line"></span>
        </div>
      </slot>
    </footer>
  </div>
</template>

<script>
export default {
  props: {
    parentPullUpState: {
      default: 0
    },
    onInfiniteLoad: {
      type: Function,
      require: false
    }
  },
  data () {
    return {
      top: 0,
      pullUpState: 0, // 1:上拉加載更多, 2:加載中……, 3:我是有底線的
      isLoading: false, // 是否正在加載
      pullUpInfo: {
        moreText: '上拉加載更多',
        loadingText: '數(shù)據(jù)加載中...',
        noMoreText: '我是有底線的'
      },
      startX: 0,
      startY: 0,
      endX: 0,
      endY: 0
    }
  },
  methods: {
    /**
     * 觸摸開始状囱,手指點擊屏幕時
     * @param {object} e Touch 對象包含的屬性
     */
    touchStart (e) {
      this.startX = e.touches[0].pageX
      this.startY = e.touches[0].pageY
    },

    /**
     * 接觸點改變术裸,滑動時
     * @param {object} e Touch 對象包含的屬性
     */
    touchMove (e) {
      this.endX = e.changedTouches[0].pageX
      this.endY = e.changedTouches[0].pageY
      let direction = this.getSlideDirection(this.startX, this.startY, this.endX, this.endY)
      switch (direction) {
        case 0:
          // console.log('沒滑動')
          break
        case 1:
          // console.log('向上')
          this.scrollToTheEnd()
          break
        case 2:
          // console.log('向下')
          break
        case 3:
          // console.log('向左')
          break
        case 4:
          // console.log('向右')
          break
        default:
      }
    },

    /**
     * 觸摸結(jié)束,手指離開屏幕時
     * @param {object} e Touch 對象包含的屬性
     */
    touchend (e) {
      this.isLoading = false
    },

    /**
     * 判斷滾動條是否到底
     */
    scrollToTheEnd () {
      let innerHeight = document.querySelector('.load-moudle').clientHeight
      // 變量scrollTop是滾動條滾動時亭枷,距離頂部的距離
      let scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop
      // 變量scrollHeight是滾動條的總高度
      let scrollHeight = document.documentElement.clientHeight || document.body.scrollHeight
      // 滾動條到底部的條件
      if (scrollTop + scrollHeight >= innerHeight) {
        if (this.pullUpState !== 3 && !this.isLoading) {
          this.infiniteLoad()
        }
        // console.log('距頂部' + scrollTop + '滾動條總高度' + scrollHeight + '內(nèi)容高度' + innerHeight)
      }
    },

    /**
     * 上拉加載數(shù)據(jù)
     */
    infiniteLoad () {
      if (this.pullUpState !== 0) {
        this.pullUpState = 2
        this.isLoading = true
        this.onInfiniteLoad(this.infiniteLoadDone)
      }
    },

    /**
     * 加載數(shù)據(jù)完成
     */
    infiniteLoadDone () {
      this.pullUpState = 1
    },

    /**
     * 返回角度
     */
    getSlideAngle (dx, dy) {
      return Math.atan2(dy, dx) * 180 / Math.PI
    },

    /**
     * 根據(jù)起點和終點返回方向 1:向上袭艺,2:向下,3:向左叨粘,4:向右,0:未滑動
     * @param {number} startX X軸開始位置
     * @param {number} startY X軸結(jié)束位置
     * @param {number} endX Y軸開始位置
     * @param {number} endY Y軸結(jié)束位置
     */
    getSlideDirection (startX, startY, endX, endY) {
      let dy = startY - endY
      let dx = endX - startX
      let result = 0
      // 如果滑動距離太短
      if (Math.abs(dx) < 2 && Math.abs(dy) < 2) {
        return result
      }
      let angle = this.getSlideAngle(dx, dy)
      if (angle >= -45 && angle < 45) {
        result = 4
      } else if (angle >= 45 && angle < 135) {
        result = 1
      } else if (angle >= -135 && angle < -45) {
        result = 2
      } else if ((angle >= 135 && angle <= 180) || (angle >= -180 && angle < -135)) {
        result = 3
      }
      return result
    }
  },
  watch: {
    parentPullUpState (curVal, oldVal) {
      this.pullUpState = curVal
    }
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.load-more {
  width: 100%;
  color: #c0c0c0;
  background: #fafafa;
  font-size: 24px;
}

.more-tip,
.loading-tip,
.no-more-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.load-moudle .loading-icon {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: url(../../assets/images/refreshAndReload/loading.png) no-repeat;
  background-size: cover;
  margin-right: 5px;
  animation: rotating 2s linear infinite;
}

@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}

.connecting-line {
  display: inline-flex;
  width: 150px;
  height: 2px;
  background: #ddd;
  margin-left: 20px;
  margin-right: 20px;
}
</style>

3猾编、對兩個組件的使用

<template>
  <section class="container">
    <v-refresh :on-refresh="onRefresh">
      <v-reload
        :on-infinite-load="onInfiniteLoad"
        :parent-pull-up-state="infiniteLoadData.pullUpState"
      >
        <div class="bank-box">
          <div class="bank-list" v-for="item in bankList" :key="item.id">
            <div
              class="bank-icon"
              :style="{ 'background': 'url(' + require('../../assets/images/bankIcon/'+item.iconName) + ') no-repeat', 'background-size': '100%' }"
            ></div>
            <span class="bank-name">{{item.bankName}}</span>
          </div>
        </div>
        <div class="hot-box">
          <div class="hot-header">
            <span class="hot-name">熱門推薦</span>
            <div class="more-box">
              <span class="more-text">查看更多</span>
              <span class="more-icon"></span>
            </div>
          </div>
          <div class="hot-centenrt">
            <div class="hot-left">
              <span class="left-name">{{hotLeft.name}}</span>
              <span class="left-desc">{{hotLeft.desc}}</span>
              <div
                class="left-img"
                :style="{ 'background': 'url(' + require('../../assets/images/bank/'+hotLeft.imgName) + ') no-repeat', 'background-size': '100%' }"
              ></div>
            </div>
            <div class="hot-right">
              <div class="right-top">
                <div class="text-box">
                  <span class="right-name">{{centenrtOne.name}}</span>
                  <span class="right-desc">{{centenrtOne.desc}}</span>
                </div>
                <div
                  class="right-img"
                  :style="{ 'background': 'url(' + require('../../assets/images/bank/'+centenrtOne.imgName) + ') no-repeat', 'background-size': '100%' }"
                ></div>
              </div>
              <div class="hot-right-bottom">
                <div class="text-box2">
                  <span class="right-name2">{{centenrtTwo.name}}</span>
                  <span class="right-desc2">{{centenrtTwo.desc}}</span>
                </div>
                <div
                  class="right-img"
                  :style="{ 'background': 'url(' + require('../../assets/images/bank/'+centenrtTwo.imgName) + ') no-repeat', 'background-size': '100%' }"
                ></div>
              </div>
            </div>
          </div>
        </div>
        <div class="card-state">
          <div class="card-progress border-right">
            <div class="progress-icon"></div>
            <div class="card-text">
              <span class="card-name">辦卡進度</span>
              <span class="card-desc">讓等待隨處可見</span>
            </div>
          </div>
          <div class="card-activation">
            <div class="activation-icon"></div>
            <div class="card-text">
              <span class="card-name">辦卡激活</span>
              <span class="card-desc">讓等待隨處可見</span>
            </div>
          </div>
        </div>
        <div class="card-order">
          <div class="border-bottom card-bottom">
            <div class="hot-header">
              <span class="hot-name">熱卡排行</span>
            </div>
          </div>
          <div slot="load-more">
            <li
              class="card-list"
              v-for="(item,index) in infiniteLoadData.pullUpList"
              :key="item.id"
            >
              <div
                class="card-content"
                :class="infiniteLoadData.pullUpList.length - 1 != index? 'card-bottom':''"
              >
                <div
                  class="card-img"
                  :style="{ 'background': 'url(' + require('../../assets/images/bank/'+item.imgName) + ') no-repeat', 'background-size': '100%' }"
                ></div>
                <div class="card-list-text">
                  <p class="card-name">{{item.cardName}}</p>
                  <p class="card-title">{{item.cardTitle}}</p>
                  <div class="words-lists">
                    <div class="card-words">
                      <p class="card-word">{{item.cardWordOne}}</p>
                    </div>
                    <div v-if="item.cardWordTwo" class="card-words words-two">
                      <p class="card-word">{{item.cardWordTwo}}</p>
                    </div>
                  </div>
                </div>
              </div>
            </li>
          </div>
        </div>
      </v-reload>
    </v-refresh>
  </section>
</template>

<script>
import DropDownRefresh from '../common/DropDownRefresh'
import PullUpReload from '../common/PullUpReload'
export default {
  data () {
    return {
      bankList: [
        {
          iconName: 'zhaoshang.png',
          bankName: '招商銀行'
        },
        {
          iconName: 'minsheng.png',
          bankName: '民生銀行'
        },
        {
          iconName: 'pingancar.png',
          bankName: '平安聯(lián)名'
        },
        {
          iconName: 'xingye.png',
          bankName: '興業(yè)銀行'
        },
        {
          iconName: 'shanghai.png',
          bankName: '上海銀行'
        },
        {
          iconName: 'jiaotong.png',
          bankName: '交通銀行'
        },
        {
          iconName: 'guangda.png',
          bankName: '光大銀行'
        },
        {
          iconName: 'more.png',
          bankName: '全部銀行'
        }
      ],
      hotLeft: {
        bankName: '交通銀行',
        name: '交行Y-POWER黑卡',
        desc: '額度100%取現(xiàn)',
        imgName: 'jiaohangY-POWER.png'
      },
      centenrtOne: {
        bankName: '招商銀行',
        name: '招行YOUNG卡',
        desc: '生日月雙倍積分',
        imgName: 'zhaohangYOUNG.png'
      },
      centenrtTwo: {
        bankName: '光大銀行',
        name: '光大淘票票公仔聯(lián)名卡',
        desc: '電影達人必備',
        imgName: 'guangdalianming.png'
      },
      cardList: [
        {
          bankName: '平安聯(lián)名',
          imgName: 'pinganqiche.png',
          cardName: '平安銀行信用卡',
          cardTitle: '平安銀行汽車之家聯(lián)名單幣卡',
          cardWordOne: '首年免年費',
          cardWordTwo: '加油88折'
        },
        {
          bankName: '上海銀行',
          imgName: 'shanghaitaobao.png',
          cardName: '上海銀行信用卡',
          cardTitle: '淘寶金卡',
          cardWordOne: '積分抵現(xiàn)',
          cardWordTwo: '首刷有禮'
        },
        {
          bankName: '華夏銀行',
          imgName: 'huaxiaiqiyi.png',
          cardName: '華夏銀行信用卡',
          cardTitle: '華夏愛奇藝悅看卡',
          cardWordOne: '送愛奇藝會員',
          cardWordTwo: '商城8折'
        },
        {
          bankName: '浦發(fā)銀行',
          imgName: 'pufajianyue.png',
          cardName: '浦發(fā)銀行信用卡',
          cardTitle: '浦發(fā)銀行簡約白金卡',
          cardWordOne: '團購立減',
          cardWordTwo: '酒店優(yōu)惠 免年費'
        },
        {
          bankName: '中信銀行',
          imgName: 'zhongxinbaijin.png',
          cardName: '中信銀行信用卡',
          cardTitle: '中信銀行i白金信用卡',
          cardWordOne: '首刷有禮',
          cardWordTwo: '雙倍積分'
        }
      ],
      // 上拉加載的設置
      infiniteLoadData: {
        initialShowNum: 3, // 初始顯示多少條
        everyLoadingNum: 3, // 每次加載的個數(shù)
        pullUpState: 2, // 子組件的pullUpState狀態(tài)
        pullUpList: [], // 上拉加載更多數(shù)據(jù)的數(shù)組
        showPullUpListLength: this.initialShowNum // 上拉加載后所展示的個數(shù)
      }
    }
  },
  mounted () {
    this.getStartPullUpState()
    this.getPullUpDefData()
  },
  methods: {
    /**
     * 獲取上拉加載的初始數(shù)據(jù)
     */
    getPullUpDefData () {
      this.infiniteLoadData.pullUpList = []
      if (this.cardList.length < this.infiniteLoadData.initialShowNum) {
        for (let i = 0; i < this.cardList.length; i++) {
          this.infiniteLoadData.pullUpList.push(this.cardList[i])
        }
      } else {
        for (let i = 0; i < this.infiniteLoadData.initialShowNum; i++) {
          this.infiniteLoadData.pullUpList.push(this.cardList[i])
        }
      }
      this.getStartPullUpState()
    },

    /**
     * 獲取上拉加載的pullUpState狀態(tài)
     */
    getStartPullUpState () {
      if (this.infiniteLoadData.pullUpList.length) {
        if (this.cardList.length <= this.infiniteLoadData.initialShowNum) {
          // 修改子組件的pullUpState狀態(tài)
          this.infiniteLoadData.pullUpState = 3
        } else {
          this.infiniteLoadData.pullUpState = 1
        }
      } else {
        this.infiniteLoadData.pullUpState = 0
      }
    },

    /**
     * 上拉一次加載更多的數(shù)據(jù)
     */
    getPullUpMoreData () {
      this.showPullUpListLength = this.infiniteLoadData.pullUpList.length
      if (this.infiniteLoadData.pullUpList.length + this.infiniteLoadData.everyLoadingNum > this.cardList.length) {
        for (let i = 0; i < this.cardList.length - this.showPullUpListLength; i++) {
          this.infiniteLoadData.pullUpList.push(this.cardList[i + this.showPullUpListLength])
        }
      } else {
        for (let i = 0; i < this.infiniteLoadData.everyLoadingNum; i++) {
          this.infiniteLoadData.pullUpList.push(this.cardList[i + this.showPullUpListLength])
        }
      }
      if (this.cardList.length === this.infiniteLoadData.pullUpList.length) {
        this.infiniteLoadData.pullUpState = 3
      } else {
        this.infiniteLoadData.pullUpState = 1
      }
    },

    /**
     * 下拉刷新
     */
    onRefresh (done) {
      // 如果下拉刷新和上拉加載同時使用,下拉時初始化上拉的數(shù)據(jù)
      this.getStartPullUpState()
      this.getPullUpDefData()
      done() // call done
    },

    /**
     * 上拉加載
     */
    onInfiniteLoad (done) {
      if (this.infiniteLoadData.pullUpState === 1) {
        this.getPullUpMoreData()
      }
      done()
    }
  },
  components: {
    'v-refresh': DropDownRefresh,
    'v-reload': PullUpReload
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
@import "../../assets/css/not2rem.css";
.container {
  display: flex;
  flex-direction: column;
  width: 750px;
  height: 1334px;
  background-color: #f7f7f7;
}

.bank-box {
  display: flex;
  flex-wrap: wrap;
  padding: 2px 7px 42px 7px;
  background-color: #fff;
}

.bank-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100px;
  height: 98px;
  margin: 40px 42px 0 42px;
}

.bank-icon {
  width: 56px;
  height: 56px;
  margin: 0 22px 18px;
}

.bank-name {
  display: flex;
  align-items: center;
  width: 110px;
  height: 24px;
  line-height: 24px;
  font-size: 24px;
  color: #333;
}

.hot-box {
  width: 100%;
  height: 420px;
  margin-top: 10px;
  background: #fff;
}

.hot-header { display: flex; justify-content: space-between; align-items: center; width: 674px; height: 80px; margin: 0 30px 0 46px;}
.hot-name { display: flex; align-items: center; height: 28px; font-size: 28px; color: #333;}
.more-text { display: flex; align-items: center; font-size: 24px; color: #999;}
.more-box { display: flex; align-items: center;}
.more-icon { margin-left: 20px; width: 11px; height: 20px; background: url("../../assets/images/bank/more.png") no-repeat; background-size: 100%;}
.hot-centenrt { display: flex; align-items: center; width: 710px; height: 320px; margin: 0 20px 20px 20px;}
.hot-left { display: flex; flex-direction: column; width: 350px; height: 320px; background: #f7f7f7;}
.left-name { display: flex; align-items: center; width: 282px; height: 24px; margin: 50px 34px 0 34px; font-size: 24px; line-height: 24px; color: #333;}
.left-desc { display: flex; align-items: center; width: 282px; height: 20px; margin: 12px 34px 0 34px; font-size: 20px;
  line-height: 20px; color: #999;}
.left-img { width: 220px; height: 142px; margin-left: 34px; margin-top: 34px;}
.hot-right { display: flex; flex-direction: column; width: 350px; height: 320px; margin-left: 10px;}
.right-top { display: flex; flex-direction: row; width: 100%; height: 156px; background: #f7f7f7;}
.text-box { display: flex; flex-direction: column; width: 180px; height: 58px; margin: 49px 20px 0 20px;}
.right-name { display: flex; align-items: center; width: 100%; height: 24px; line-height: 24px; font-size: 24px; color: #333;}
.right-desc {
  display: flex;
  align-items: center;
  margin-top: 10px;
  width: 100%;
  height: 24px;
  line-height: 24px;
  font-size: 24px;
  color: #999;
}

.right-img {
  width: 110px;
  height: 70px;
  margin-top: 43px;
}

.hot-right-bottom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 156px;
  margin-top: 8px;
  background: #f7f7f7;
}

.text-box2 {
  display: flex;
  flex-direction: column;
  width: 180px;
  margin: 31px 20px 0 20px;
}

.right-name2 {
  display: flex;
  align-items: center;
  width: 100%;
  height: 58px;
  line-height: 30px;
  font-size: 24px;
  color: #333;
}

.right-desc2 {
  display: flex;
  align-items: center;
  margin-top: 12px;
  width: 100%;
  height: 24px;
  line-height: 24px;
  font-size: 24px;
  color: #999;
}

.card-state {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 128px;
  margin-top: 10px;
  background-color: #fff;
}
.card-progress {
  display: flex;
  align-items: center;
  width: 327px;
  height: 88px;
  margin: 20px 0 20px 48px;
}
.progress-icon {
  width: 48px;
  height: 48px;
  margin: 20px 0;
  background: url("../../assets/images/bank/search.png") no-repeat;
  background-size: 100%;
}
.activation-icon {
  width: 48px;
  height: 48px;
  margin: 20px 0;
  background: url("../../assets/images/bank/activation.png") no-repeat;
  background-size: 100%;
}
.card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 228px;
  height: 66px;
  margin: 11px 20px 11px 30px;
}
.card-name {
  display: flex;
  align-items: center;
  width: 100%;
  height: 28px;
  line-height: 28px;
  font-size: 28px;
  color: #333;
}
.card-desc {
  display: flex;
  align-items: center;
  width: 100%;
  height: 22px;
  line-height: 22px;
  font-size: 22px;
  margin-top: 16px;
  color: #999;
}
.card-activation {
  display: flex;
  align-items: center;
  width: 326px;
  height: 88px;
  margin: 20px 0 20px 48px;
}

.card-order {
  width: 100%;
  height: auto;
  margin-top: 10px;
  background-color: #fff;
}
.border-bottom {
  width: 100%;
  height: 80px;
}
.card-list {
  width: 100%;
  height: 228px;
  list-style-type: none;
}
.card-content {
  display: flex;
  flex-direction: row;
  width: 700px;
  height: 228px;
  margin-left: 50px;
}
.card-img { width: 186px; height: 120px; margin: 54px 0 54px 20px;}
.card-list-text { display: flex; flex-direction: column; width: 386px; height: 124px; margin: 52px 34px 52px 74px;}
.card-name { width: 100%; height: 28px; line-height: 28px; font-size: 28px; color: #333;}
.card-title { width: 100%; height: 24px; margin-top: 20px; line-height: 24px; font-size: 24px; color: #666;}
.words-lists { display: flex; flex-direction: row;}
.card-words { height: 36px;margin-top: 16px; border-radius: 20px; background-color: #e8ca88;}
.card-word {height: 20px; padding: 8px 18px; line-height: 20px; font-size: 20px; color: #4b4b4b;}
.words-two { margin-left: 20px;}
</style>

這里只是展示了一下效果升敲,使用的全是靜態(tài)數(shù)據(jù)答倡,如果要用接口數(shù)據(jù)的話,this.getPullUpMoreData()方法直接換成接口數(shù)據(jù)的方法驴党,并將判斷的邏輯移到接口方法里瘪撇,當然根據(jù)實際情況,分頁呀啥的做做適當?shù)男薷摹?/p>

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市设江,隨后出現(xiàn)的幾起案子锦茁,更是在濱河造成了極大的恐慌,老刑警劉巖叉存,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件码俩,死亡現(xiàn)場離奇詭異,居然都是意外死亡歼捏,警方通過查閱死者的電腦和手機稿存,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來瞳秽,“玉大人瓣履,你說我怎么就攤上這事×防” “怎么了袖迎?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長腺晾。 經(jīng)常有香客問我燕锥,道長,這世上最難降的妖魔是什么悯蝉? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任归形,我火速辦了婚禮,結(jié)果婚禮上鼻由,老公的妹妹穿的比我還像新娘暇榴。我一直安慰自己,他們只是感情好蕉世,可當我...
    茶點故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布蔼紧。 她就那樣靜靜地躺著,像睡著了一般讨彼。 火紅的嫁衣襯著肌膚如雪歉井。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天哈误,我揣著相機與錄音,去河邊找鬼躏嚎。 笑死蜜自,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的卢佣。 我是一名探鬼主播重荠,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼虚茶!你這毒婦竟也來了戈鲁?” 一聲冷哼從身側(cè)響起仇参,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎婆殿,沒想到半個月后诈乒,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡婆芦,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年怕磨,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片消约。...
    茶點故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡肠鲫,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出或粮,到底是詐尸還是另有隱情导饲,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布氯材,位于F島的核電站渣锦,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏浓体。R本人自食惡果不足惜泡挺,卻給世界環(huán)境...
    茶點故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望命浴。 院中可真熱鬧娄猫,春花似錦、人聲如沸生闲。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽碍讯。三九已至悬蔽,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間捉兴,已是汗流浹背蝎困。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留倍啥,地道東北人禾乘。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像虽缕,于是被迫代替她去往敵國和親始藕。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內(nèi)容