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

50 lines
895 B

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. <image src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/BB1msKSi.img" mode="aspectFill" />
  7. </view>
  8. <cardList :type="2" ref="cardList"/>
  9. <tabber/>
  10. </view>
  11. </template>
  12. <script>
  13. import cardList from '../components/list/cardList.vue'
  14. export default {
  15. components: {
  16. cardList
  17. },
  18. data() {
  19. return {
  20. }
  21. },
  22. onShow() {
  23. this.$refs.cardList.getList()
  24. },
  25. onPullDownRefresh(){
  26. this.$refs.cardList.getList()
  27. },
  28. //滚动到屏幕底部
  29. onReachBottom() {
  30. this.$refs.videoList.loadMoreList()
  31. },
  32. methods: {
  33. }
  34. }
  35. </script>
  36. <style scoped lang="scss">
  37. .following {
  38. .following-top-img {
  39. height: 600rpx;
  40. image {
  41. height: 100%;
  42. width: 100%;
  43. }
  44. }
  45. }
  46. </style>