| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="total-page page_env page-box">
- <Nav :title="'2024- 3.12--3.18'" :back="false" :is_fixed="true" :opacity="scrollTop" :justify="'left'" :color="'#fff'">
- <view class="">
- 内容
- </view>
- </Nav>
- <TaskItem :type="2"></TaskItem>
- <Tab :tab-index="3"></Tab>
- </view>
- </template>
- <script>
- import TaskItem from "@/common/task/task-item.vue";
-
- export default {
- components: {
- TaskItem,
- },
- data() {
- return {
- scrollTop: 0,
- }
- },
- onLoad() {
- uni.hideTabBar()
- },
- onPageScroll(res) {
- this.scrollTop = res.scrollTop / 120
- },
- mounted() {
- },
- methods: {
- },
- }
- </script>
- <style lang="scss" scoped>
- </style>
|