App.vue 476 B

1234567891011121314151617181920212223
  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. globalData: {
  13. imgUrl: 'https://bolin-static-wechat.oss-cn-beijing.aliyuncs.com/wechat_default_img/',
  14. baseUrl: 'https://bolin-static-wechat.oss-cn-beijing.aliyuncs.com/',
  15. man: 'man.png',
  16. woman: 'woman.png'
  17. }
  18. };
  19. </script>
  20. <style>
  21. @import '@/common/style/iconfont.css';
  22. </style>