1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="mission-list">
- <list-item />
- <tm-tabbar :permission="1" />
- </view>
- </template>
- <script>
- // 任务列表
- import listItem from './list-item.vue';
- export default {
- data(){
- return {
- tabBars: [
- {}
- ]
- }
- },
- components: {
- listItem
- }
- }
- </script>
- <style lang="less">
- .mission-list {
- height: 100%;
- }
- </style>
|