绿满眶商城微信小程序-uniapp
peng
2025-07-21 408d93a7fed0403381400ce2fc028819bb203eec
pages/video/home-page.vue
@@ -167,7 +167,7 @@
</template>
<script>
import DropdownMenu from '@/components/dropdown-menu.vue'
import DropdownMenu from '@/pages/video/dropdown-menu.vue'
import {getAuthorInfo, getAuthorVideoPage, getAuthorCollectVideoPage, getAuthorLikeVideoPage} from '@/api/user.js'
import {subscribe, unSubscribe, delVideo, updateVideo, userDownVideo} from '@/api/video.js'
@@ -222,22 +222,25 @@
    }
  },
  onShow() {
    this.getAuthorInfo();
    if (this.currentTab === 'works') {
      this.videoQuery.pageNumber = 1
      this.nomoreVideo = false
      this.getAuthorVideoPage();
    } else if (this.currentTab === 'collect') {
       this.collectVideoQuery.pageNumber = 1
       this.nomoreCollectVideo = false
       this.getAuthorCollectVideoPage()
    } else if (this.currentTab === 'likes') {
       this.likeVideoQuery.pageNumber = 1
       this.nomoreLikeVideo = false
       this.getAuthorLikeVideoPage()
    if (this.authorId) {
       this.getAuthorInfo();
       if (this.currentTab === 'works') {
             this.videoQuery.pageNumber = 1
             this.nomoreVideo = false
             this.getAuthorVideoPage();
       } else if (this.currentTab === 'collect') {
              this.collectVideoQuery.pageNumber = 1
              this.nomoreCollectVideo = false
              this.getAuthorCollectVideoPage()
       } else if (this.currentTab === 'likes') {
              this.likeVideoQuery.pageNumber = 1
              this.nomoreLikeVideo = false
              this.getAuthorLikeVideoPage()
       }
    }
  },
  onLoad(option) {
     console.log("收到参数", option);
   this.authorId = option.authorId;
    this.getAuthorInfo();
   this.getAuthorVideoPage();