App.vue 1.1 KB

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