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

49 lines
909 B

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
3 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="活动"/>
  4. <view class="activityList">
  5. <!-- <activityList :list="list"/> -->
  6. <activityItem
  7. :key="index"
  8. v-for="(item, index) in list"
  9. :item="item"
  10. @click="$utils.navigateTo('/pages_order/activity/activityDetail?id=' + item.id)"
  11. />
  12. </view>
  13. <tabber select="2" />
  14. </view>
  15. </template>
  16. <script>
  17. import tabber from '@/components/base/tabbar.vue'
  18. import activityList from '@/components/list/activityList.vue'
  19. import activityItem from '@/components/list/activity/activityItem.vue'
  20. import mixinsList from '@/mixins/list.js'
  21. export default {
  22. mixins : [mixinsList],
  23. components : {
  24. tabber,
  25. activityList,
  26. activityItem,
  27. },
  28. data() {
  29. return {
  30. mixinsListApi : 'getActivityPage',
  31. }
  32. },
  33. methods: {
  34. }
  35. }
  36. </script>
  37. <style scoped lang="scss">
  38. .page{
  39. .activityList{
  40. // padding: 0 20rpx;
  41. }
  42. }
  43. </style>