App.vue 1.1 KB

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