App.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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="less">
  15. @import '@/assets/css/common.less';
  16. </style>
  17. <style lang="scss">
  18. @import "@/uni_modules/uview-ui/index.scss";
  19. @import '@/assets/css/common.scss';
  20. @import '@/assets/css/commonTheme.css';
  21. page{
  22. background-color: #f5f5f5;
  23. }
  24. ::-webkit-scrollbar{
  25. width: 0 !important;
  26. height: 0 !important;
  27. }
  28. /*每个页面公共css */
  29. .base-color {
  30. color: #1773ff;
  31. }
  32. .colorf{
  33. color: #fff;
  34. }
  35. .bgf{
  36. background-color: #fff;
  37. }
  38. .base-color-2 {
  39. color: #e7f1fe;
  40. }
  41. .base-color-3 {
  42. color: #425034;
  43. }
  44. .base-color-9 {
  45. color: #999;
  46. }
  47. .base-color-8 {
  48. color: #f8f8f8;
  49. }
  50. .base-color-6 {
  51. color: #666;
  52. }
  53. .base-color-gray {
  54. color: #DEDFE4;
  55. }
  56. .base-color-red{
  57. color:#ee0a25;
  58. }
  59. .base-color-dark {
  60. color: #313131;
  61. }
  62. .base-color-dark2 {
  63. color: #3E3E3E;
  64. }
  65. .base-price {
  66. color: #FF1212;
  67. }
  68. .base-success {
  69. color: #a3db42;
  70. }
  71. .base-bg {
  72. background: #1773ff;
  73. }
  74. .base-bg-2 {
  75. background: #e7f1fe;
  76. }
  77. .base-bg-red{
  78. background: #ee0a25;
  79. }
  80. .base-bg-f{
  81. background-color:#fff;
  82. }
  83. .base-bg-f8{
  84. background-color:#f8f8f8;
  85. }
  86. .base-bg-f5{
  87. background-color: #f5f5f5;
  88. }
  89. .base-bg-9{
  90. background-color: #f9f9f9;
  91. }
  92. .base-bg-blue{
  93. background:#1677ff;
  94. }
  95. .base-bg-sure{
  96. background:#e7f2fe;
  97. }
  98. .base-bg-orange{
  99. background:#FF7F00;
  100. }
  101. .base-bg-false{
  102. background:#fae7e7;
  103. }
  104. .bor-blue{
  105. border: 2rpx solid #c9e1fb;
  106. }
  107. .bor-red{
  108. border: 2rpx solid #f7a1a1;
  109. }
  110. </style>