绿满眶商城微信小程序-uniapp
xiangpei
2025-06-25 df4dd9f030ac4e830d93f2f64e2379a9b7dad278
pages/mine/activity/reportActivity.vue
@@ -1,7 +1,7 @@
<template>
   <view class="wrapper">
      <top-bar selectedTitleIndex="activity" @changeTab="topBarChange" class="topBar"></top-bar>
      <view style="height: 100rpx"></view>
      <!-- 内容区域 -->
      <scroll-view scroll-y class="content" style="height: 40vh;" @scrolltolower="loadMore" :lower-threshold="100">
@@ -47,9 +47,11 @@
</template>
<script>
   import TopBar from "@/components/TopBar.vue";
   import '@/components/uview-components/uview-ui';
   import {getActivityReportList} from '@/api/activity.js';
   export default {
      components: {TopBar},
      data() {
         return {
            columns: [
@@ -74,6 +76,17 @@
         this.getActivityList();
      },
      methods: {
         topBarChange(titleObj) {
            if (titleObj.index === 'home') {
               uni.switchTab({
                  url: titleObj.pagePath
               });
            } else {
               uni.redirectTo({
                  url: titleObj.pagePath
               });
            }
         },
         /**
          * 下拉刷新时
          */
@@ -367,4 +380,10 @@
         font-size: 28rpx;
      }
   }
</style>
   .topBar {
      position: fixed;
      top: 20rpx;
      left: 20rpx;
      z-index: 1000
   }
</style>