App.vue 460 B

12345678910111213141516171819202122232425262728293031
  1. <script>
  2. export default {
  3. globalData: {
  4. token: null,
  5. userInfo: null,
  6. },
  7. onLaunch: function() {
  8. console.log('App Launch')
  9. },
  10. onShow: function() {
  11. console.log('App Show')
  12. },
  13. onHide: function() {
  14. console.log('App Hide')
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. /*每个页面公共css */
  20. @import "@/uni_modules/uview-ui/index.scss";
  21. .pagination {
  22. margin: 10px;
  23. }
  24. page {
  25. height: 100%;
  26. margin: 0 0;
  27. padding: 0 0;
  28. }
  29. </style>