App.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. .bg{
  17. position: fixed;
  18. width: 100vw;
  19. height: 100vh;
  20. z-index: -1;
  21. }
  22. @import "@/uni_modules/uview-ui/index.scss";
  23. @import "common/demo.scss";
  24. page {
  25. background-color:#fff;
  26. }
  27. /* 横向靠左 */
  28. .all-row-start {
  29. display: flex;
  30. flex-direction: row;
  31. align-items: center;
  32. justify-content: flex-start;
  33. }
  34. /* 横向靠右 */
  35. .all-row-end {
  36. display: flex;
  37. flex-direction: row;
  38. align-items: center;
  39. justify-content: flex-end;
  40. }
  41. /* 横向居中 */
  42. .all-row-center {
  43. display: flex;
  44. flex-direction: row;
  45. align-items: center;
  46. justify-content: center;
  47. }
  48. /* 纵向靠上 */
  49. .all-col-start {
  50. display: flex;
  51. flex-direction: column;
  52. align-items: center;
  53. justify-content: flex-start;
  54. }
  55. /* 纵向靠下 */
  56. .all-col-end {
  57. display: flex;
  58. flex-direction: column;
  59. align-items: center;
  60. justify-content: flex-end;
  61. }
  62. /* 纵向居中 */
  63. .all-col-center {
  64. display: flex;
  65. flex-direction: column;
  66. align-items: center;
  67. justify-content: center;
  68. }
  69. .u-flex {
  70. /* #ifndef APP-NVUE */
  71. display: flex;
  72. /* #endif */
  73. flex-direction: row;
  74. align-items: center;
  75. }
  76. .u-warp{
  77. flex-wrap: wrap;
  78. }
  79. .u-flex-col {
  80. /* #ifndef APP-NVUE */
  81. display: flex;
  82. /* #endif */
  83. flex-direction: column;
  84. align-items: center;
  85. }
  86. .u-flex-wrap {
  87. flex-wrap: wrap;
  88. }
  89. .u-flex-nowrap {
  90. flex-wrap: nowrap;
  91. }
  92. .u-col-center {
  93. align-items: center;
  94. }
  95. .u-col-top {
  96. align-items: flex-start;
  97. }
  98. .u-col-bottom {
  99. align-items: flex-end;
  100. }
  101. .u-row-center {
  102. justify-content: center;
  103. }
  104. .u-row-left {
  105. justify-content: flex-start;
  106. }
  107. .u-row-right {
  108. justify-content: flex-end;
  109. }
  110. .u-row-between {
  111. justify-content: space-between;
  112. }
  113. .u-row-around {
  114. justify-content: space-around;
  115. }
  116. </style>