App.vue 398 B

1234567891011121314151617181920212223242526
  1. <script>
  2. export default {
  3. onShow: function() {
  4. console.log('App Show')
  5. },
  6. onHide: function() {
  7. console.log('App Hide')
  8. },
  9. }
  10. </script>
  11. <style lang="scss">
  12. @import "style/font/iconfont.css";
  13. html {
  14. box-sizing: border-box;
  15. font-size: 28rpx;
  16. }
  17. .status_bar {
  18. height: 40px;
  19. width: 100%;
  20. background-color: #FFFFFF;
  21. position: fixed;
  22. top: 0;
  23. z-index: 99999;
  24. }
  25. </style>