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

40 lines
678 B

  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"/>
  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. methods: {
  23. }
  24. }
  25. </script>
  26. <style scoped lang="scss">
  27. .following {
  28. .following-top-img {
  29. height: 600rpx;
  30. image {
  31. height: 100%;
  32. width: 100%;
  33. }
  34. }
  35. }
  36. </style>