App.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. }
  13. </script>
  14. <style lang="scss">
  15. /*每个页面公共css */
  16. @import "uview-ui/index.scss";
  17. .content {
  18. background-color: #ffffff;
  19. width: 100%;
  20. min-height: 100vh;
  21. display: flex;
  22. flex-direction: column;
  23. font-size: 28rpx;
  24. color: #333;
  25. box-sizing: border-box;
  26. }
  27. .hflex {
  28. display: flex;
  29. flex-direction: row;
  30. flex-wrap: nowrap;
  31. }
  32. .vflex {
  33. display: flex;
  34. flex-direction: column;
  35. flex-wrap: nowrap;
  36. }
  37. .jbetween {
  38. justify-content: space-between;
  39. }
  40. .jaround {
  41. justify-content: space-around;
  42. }
  43. .jend {
  44. justify-content: flex-end;
  45. }
  46. .jcenter {
  47. justify-content: center;
  48. }
  49. .acenter {
  50. align-items: center;
  51. }
  52. .abetween {
  53. align-content: space-between;
  54. }
  55. .astart {
  56. align-items: flex-start;
  57. }
  58. .aend {
  59. align-items: flex-end;
  60. }
  61. .fwrap {
  62. flex-wrap: wrap;
  63. }
  64. .text_hide {
  65. overflow: hidden;
  66. white-space: nowrap;
  67. text-overflow: ellipsis;
  68. }
  69. </style>