App.vue 388 B

12345678910111213141516171819202122232425262728293031
  1. <script>
  2. export default {
  3. // globalData: {
  4. // requestTit: '',
  5. // faceCheckTit: '',
  6. // },
  7. onLaunch: function() {},
  8. onShow: function() {},
  9. onHide: function() {
  10. console.log('App Hide')
  11. }
  12. }
  13. </script>
  14. <style>
  15. /*每个页面公共css */
  16. #app {
  17. height: 100%;
  18. }
  19. page {
  20. height: 100%;
  21. background-color: #F3F4F6;
  22. ;
  23. }
  24. * {
  25. box-sizing: border-box;
  26. }
  27. </style>