App.vue 463 B

1234567891011121314151617181920212223242526272829303132
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. console.log('App Launch')
  5. },
  6. onShow: function() {
  7. console.log('App Show')
  8. },
  9. onHide: function() {
  10. console.log('App Hide')
  11. },
  12. globeData:
  13. {
  14. gender:-1,
  15. weight:-1,
  16. high:-1,
  17. age:-1,
  18. waist:-1,
  19. bmr:-1,
  20. calorie:-1,
  21. heartRate:-1,
  22. lowestHeartRate:-1,
  23. highestHeartRate:-1,
  24. fatWeight:-1,
  25. fatRate:-1,
  26. },
  27. }
  28. </script>
  29. <style>
  30. /*每个页面公共css */
  31. </style>