景徳镇旅游微信小程序
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.

53 lines
911 B

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. <template>
  2. <!-- 我要跟拍 -->
  3. <view class="following">
  4. <navbar title="我要跟拍" leftClick @leftClick="$utils.navigateBack" />
  5. <view class="following-top-img">
  6. <uv-swiper
  7. :list="banner.follow"
  8. indicator
  9. height="420rpx"
  10. keyName="imageContent"></uv-swiper>
  11. </view>
  12. <cardList :type="2" ref="cardList"/>
  13. <tabber/>
  14. </view>
  15. </template>
  16. <script>
  17. import { mapState } from 'vuex'
  18. import cardList from '../components/list/cardList.vue'
  19. export default {
  20. components: {
  21. cardList
  22. },
  23. data() {
  24. return {
  25. }
  26. },
  27. computed : {
  28. ...mapState(['banner']),
  29. },
  30. onShow() {
  31. this.$refs.cardList.getList()
  32. },
  33. onPullDownRefresh(){
  34. this.$refs.cardList.getList()
  35. },
  36. //滚动到屏幕底部
  37. onReachBottom() {
  38. this.$refs.videoList.loadMoreList()
  39. },
  40. methods: {
  41. }
  42. }
  43. </script>
  44. <style scoped lang="scss">
  45. .following {
  46. .following-top-img {
  47. }
  48. }
  49. </style>