123456789101112131415161718192021 |
- <script>
- export default {
- globalData: {
- wsUrl: 'ws://c7d8ff63.natappfree.cc',
- appId: 'wxa9be7360a11024a4', // appId 看课授权登录微信appId
- },
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style>
- /*每个页面公共css */
- </style>
|