mission-list.vue 367 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="mission-list">
  3. <list-item />
  4. <tm-tabbar :permission="1" />
  5. </view>
  6. </template>
  7. <script>
  8. // 任务列表
  9. import listItem from './list-item.vue';
  10. export default {
  11. data(){
  12. return {
  13. tabBars: [
  14. {}
  15. ]
  16. }
  17. },
  18. components: {
  19. listItem
  20. }
  21. }
  22. </script>
  23. <style lang="less">
  24. .mission-list {
  25. height: 100%;
  26. }
  27. </style>