App.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <script setup>
  2. import { onLaunch, onShow, onError,onHide } from '@dcloudio/uni-app';
  3. import { ShoproInit } from './sheep';
  4. import { autoSign,cancelAutoSign,resetSignStatusIfNeeded } from './sheep/hooks/useModal';
  5. onShow((options) => {
  6. // console.log("页面打开开始自动签到")
  7. autoSign()
  8. // #ifdef APP-PLUS
  9. // 获取urlSchemes参数
  10. const args = plus.runtime.arguments;
  11. if (args) {
  12. }
  13. // 获取剪贴板
  14. uni.getClipboardData({
  15. success: (res) => { },
  16. });
  17. // #endif
  18. // #ifdef MP-WEIXIN
  19. // 确认收货回调结果
  20. // console.log(options, 'options');
  21. // #endif
  22. });
  23. onHide(()=>{
  24. // console.log("页面隐藏了,取消自动签到");
  25. cancelAutoSign()
  26. });
  27. onLaunch(() => {
  28. // 隐藏原生导航栏 使用自定义底部导航
  29. uni.hideTabBar();
  30. // 加载Shopro底层依赖
  31. ShoproInit();
  32. // 每天凌晨重置签到状态
  33. resetSignStatusIfNeeded();
  34. });
  35. onError((err) => {
  36. console.log('AppOnError:', err);
  37. });
  38. </script>
  39. <style lang="scss">
  40. @import '@/sheep/scss/index.scss';
  41. </style>