App.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. },
  5. onShow: function() {
  6. },
  7. onHide: function() {
  8. }
  9. }
  10. </script>
  11. <style lang="scss">
  12. /*每个页面公共css */
  13. @import "uview-ui/index.scss";
  14. body::v-deep {
  15. uni-tabbar .uni-tabbar__bd, uni-tabbar .uni-tabbar__item {
  16. justify-content: flex-start !important;
  17. }
  18. margin: 0;
  19. padding: 0;
  20. }
  21. html {
  22. margin: 0;
  23. padding: 0;
  24. }
  25. .content {
  26. background-color: #ffffff;
  27. width: 100%;
  28. min-height: 100vh;
  29. display: flex;
  30. flex-direction: column;
  31. font-size: 28rpx;
  32. color: #333;
  33. box-sizing: border-box;
  34. }
  35. .hflex {
  36. display: flex;
  37. flex-direction: row;
  38. flex-wrap: nowrap;
  39. }
  40. .vflex {
  41. display: flex;
  42. flex-direction: column;
  43. flex-wrap: nowrap;
  44. }
  45. .jbetween {
  46. justify-content: space-between;
  47. }
  48. .jaround {
  49. justify-content: space-around;
  50. }
  51. .jend {
  52. justify-content: flex-end;
  53. }
  54. .jcenter {
  55. justify-content: center;
  56. }
  57. .acenter {
  58. align-items: center;
  59. }
  60. .abetween {
  61. align-content: space-between;
  62. }
  63. .astart {
  64. align-items: flex-start;
  65. }
  66. .aend {
  67. align-items: flex-end;
  68. }
  69. .fwrap {
  70. flex-wrap: wrap;
  71. }
  72. .text_hide {
  73. overflow: hidden;
  74. white-space: nowrap;
  75. text-overflow: ellipsis;
  76. }
  77. .text_hide2 {
  78. text-overflow: -o-ellipsis-lastline;
  79. overflow: hidden; //溢出内容隐藏
  80. text-overflow: ellipsis; //文本溢出部分用省略号表示
  81. display: -webkit-box; //特别显示模式
  82. -webkit-line-clamp: 2; //行数
  83. line-clamp: 2;
  84. -webkit-box-orient: vertical; //盒子中内容竖直排列
  85. }
  86. </style>