| 1234567891011121314151617181920212223242526272829303132 |
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- },
- globeData:
- {
- gender:-1,
- weight:-1,
- high:-1,
- age:-1,
- waist:-1,
- bmr:-1,
- calorie:-1,
- heartRate:-1,
- lowestHeartRate:-1,
- highestHeartRate:-1,
- fatWeight:-1,
- fatRate:-1,
- },
- }
- </script>
- <style>
- /*每个页面公共css */
- </style>
|