App.vue 446 B

12345678910111213141516171819202122232425262728293031323334
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. //解除跳转时闪过的登录页
  5. },
  6. onShow: function() {
  7. console.log('App Show')
  8. },
  9. onHide: function() {
  10. console.log('App Hide')
  11. }
  12. }
  13. </script>
  14. <style>
  15. /*每个页面公共css */
  16. html,
  17. body {
  18. width: 100%;
  19. height: 100%;
  20. letter-spacing: 5rpx;
  21. font-size: 25rpx;
  22. }
  23. page {
  24. height: 100%;
  25. }
  26. * {
  27. padding: 0;
  28. margin: 0;
  29. box-sizing: border-box;
  30. }
  31. </style>