景徳镇旅游微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

56 lines
992 B

<template>
<!-- 我要跟拍 -->
<view class="following">
<navbar title="我要跟拍" leftClick @leftClick="$utils.navigateBack" />
<view class="following-top-img">
<uv-swiper
:list="banner.follow"
indicator
height="420rpx"
keyName="imageContent"></uv-swiper>
</view>
<cardList :type="type" :dict="dict" ref="cardList"/>
<tabber/>
</view>
</template>
<script>
let type = 'follow'
import { mapState } from 'vuex'
import cardList from '../components/list/cardList.vue'
export default {
components: {
cardList
},
data() {
return {
type,
dict : this.$config.dict[type]
}
},
computed : {
...mapState(['banner']),
},
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 {
}
}
</style>