gain_task.vue 638 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="total-page page_env page-box">
  3. <Nav :title="'领取任务'" :genre="1" :fixedHeight="110"></Nav>
  4. <view class="task-tabs task-tabs-width p-lr20 m-t30">
  5. <!-- <TaskTab></TaskTab> -->
  6. </view>
  7. <!-- <EnButton is_both></EnButton> -->
  8. <TaskItem :type="2"></TaskItem>
  9. </view>
  10. </template>
  11. <script>
  12. import TaskItem from "@/common/task/task-item.vue";
  13. import TaskTab from "@/page_subpack/module/task_tab.vue";
  14. export default {
  15. components: {
  16. TaskTab,
  17. TaskItem
  18. },
  19. data() {
  20. return {
  21. }
  22. },
  23. methods: {
  24. }
  25. }
  26. </script>
  27. <style>
  28. .task-tabs-width {
  29. width: calc(100% - 40rpx);
  30. }
  31. </style>