uniapp,h5

12345678910111213141516171819202122232425262728
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. console.log('App Launch');
  5. // setTimeout(() => {
  6. // uni.setTabBarBadge({
  7. // index: 1,
  8. // text: '31'
  9. // });
  10. // uni.showTabBarRedDot({
  11. // index: 3
  12. // });
  13. // }, 1000);
  14. },
  15. onShow: function() {
  16. console.log('App Show');
  17. },
  18. onHide: function() {
  19. console.log('App Hide');
  20. }
  21. };
  22. </script>
  23. <style>
  24. /*每个页面公共css */
  25. </style>