App.vue 973 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. // 每天凌晨重置签到状态
  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. cancelAutoSign()
  25. })
  26. onLaunch(() => {
  27. // 隐藏原生导航栏 使用自定义底部导航
  28. uni.hideTabBar();
  29. // 加载Shopro底层依赖
  30. ShoproInit();
  31. // 每天凌晨重置签到状态
  32. resetSignStatusIfNeeded();
  33. });
  34. onError((err) => {
  35. console.log('AppOnError:', err);
  36. });
  37. </script>
  38. <style lang="scss">
  39. @import '@/sheep/scss/index.scss';
  40. </style>