瑶都万能墙
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.

41 lines
635 B

7 months ago
6 months ago
7 months ago
6 months ago
7 months ago
7 months ago
6 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
6 months ago
7 months ago
6 months ago
7 months ago
6 months ago
7 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="活动"/>
  4. <view class="activityList">
  5. <activityList :list="list"/>
  6. </view>
  7. <tabber select="1" />
  8. </view>
  9. </template>
  10. <script>
  11. import tabber from '@/components/base/tabbar.vue'
  12. import activityList from '@/components/list/activityList.vue'
  13. import mixinsList from '@/mixins/list.js'
  14. export default {
  15. mixins : [mixinsList],
  16. components : {
  17. tabber,
  18. activityList
  19. },
  20. data() {
  21. return {
  22. mixinsListApi : 'getActivityPage',
  23. }
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style scoped lang="scss">
  30. .page{
  31. .activityList{
  32. padding: 0 20rpx;
  33. }
  34. }
  35. </style>