| 1234567891011121314151617181920212223 |
- <script>
- export default {
- globalData: {
- // shareUrl: 'https://mini.98mp.com/api/api.php', //开发环境全局接口域名
- glbalHeight:'',
- globalTimestamp: (Date.now()).toString(),
- },
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style>
- /*每个页面公共css */
- </style>
|