<template>
|
|
<!-- 我要跟拍 -->
|
|
<view class="following">
|
|
<navbar title="我要跟拍" leftClick @leftClick="$utils.navigateBack" />
|
|
<view class="following-top-img">
|
|
<image src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/BB1msKSi.img" mode="aspectFill" />
|
|
</view>
|
|
<cardList :type="2" ref="cardList"/>
|
|
<tabber/>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import cardList from '../components/list/cardList.vue'
|
|
export default {
|
|
components: {
|
|
cardList
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onShow() {
|
|
this.$refs.cardList.getList()
|
|
},
|
|
onPullDownRefresh(){
|
|
this.$refs.cardList.getList()
|
|
},
|
|
//滚动到屏幕底部
|
|
onReachBottom() {
|
|
this.$refs.videoList.loadMoreList()
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.following {
|
|
.following-top-img {
|
|
height: 600rpx;
|
|
|
|
image {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
</style>
|