You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

53 lines
1.6 KiB

  1. <script>
  2. export default {
  3. // 小程序:onLaunch 仅启动时调用一次
  4. // H5/App:onLaunch 打开网页/用户点刷新/代码热更新时均会调用;
  5. // 考虑到用户刷新网页时会丢失全局数据、页面栈、页面数据等,因此直接跳回首页即可
  6. async onLaunch(param) {
  7. //应用的生命周期 应用启动后触发
  8. // #ifdef H5 || APP-VUE
  9. // H5 刷新时获取当前页面路径
  10. const pagePath = "/" + param.path;
  11. // 如果 H5 刷新后访问的不是首页/登录页/注册页,直接跳转回首页
  12. if (!["/pages/login", "/pages/home", "/pages/signup"].includes(pagePath)) {
  13. this.$nextTick(() => {
  14. this.TAB_TO("/pages/home");
  15. return;
  16. });
  17. }
  18. // #endif
  19. // #ifdef MP-WEIXIN
  20. // 小程序端,处理更新 (支付宝/钉钉暂不支持)
  21. const updateManager = uni.getUpdateManager();
  22. updateManager.onUpdateReady(() => {
  23. this.HIDE_LOADING();
  24. uni.showModal({
  25. title: "更新提示",
  26. content: "小程序新版本已准备好,是否更新应用?",
  27. success: ({ confirm }) => {
  28. if (confirm) {
  29. updateManager.applyUpdate();
  30. }
  31. },
  32. });
  33. });
  34. // #endif
  35. },
  36. onError(error) {
  37. console.log(error);
  38. },
  39. };
  40. </script>
  41. <style lang="less">
  42. // 现在 CSS 必须在 <style> 中引入,参考:https://ask.dcloud.net.cn/question/86907
  43. // 后续 uni-app 升级后可能会支持直接 import 样式,到时候可以省略下行代码
  44. @import "~@/components/learun-mpui/styles/index.css";
  45. page {
  46. background-color: #f3f3f3;
  47. }
  48. </style>