App.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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>
  15. /*每个页面公共css */
  16. @import "./static/font/iconfont.css";
  17. /*占位符*/
  18. .lz-status_bar {
  19. height: var(--status-bar-height);
  20. width: 100%;
  21. background-color: #fff;
  22. }
  23. .lz-top_view {
  24. height: var(--status-bar-height);
  25. width: 100%;
  26. position: fixed;
  27. background-color: #fff;
  28. top: 0;
  29. z-index: 999;
  30. }
  31. /*头部样式*/
  32. .kaoshi-head{
  33. background: #3c7bfc;
  34. top: var(--status-bar-height);
  35. z-index: 100;
  36. border-bottom: solid 1px #f6f7f9;
  37. }
  38. .kaoshi-head-left .icon-zuojiantou{
  39. font-size: 20px;
  40. }
  41. .kaoshi-head-top{
  42. display: flex;
  43. font-size: 16px;
  44. color: #fff;
  45. align-items: center;
  46. width: 92%;
  47. margin: 0 auto;
  48. line-height: 50px;
  49. }
  50. .kaoshi-head .kaoshi-head-left{width: 20%;display: flex;align-items: center;}
  51. .kaoshi-head .kaoshi-head-left .iconfont{padding-left: 4px;font-size: 20px;}
  52. .kaoshi-head .kaoshi-head-m{width: 60%;text-align: center;font-size: 18px;
  53. text-overflow: ellipsis;
  54. overflow: hidden;
  55. display: -webkit-box;
  56. -webkit-line-clamp: 1;
  57. -webkit-box-orient: vertical;
  58. word-break: break-all;
  59. }
  60. .kaoshi-head .kaoshi-head-right{width: 20%;text-align: right;}
  61. .kaoshi-head-right .iconfont{
  62. font-size: 23px;
  63. }
  64. .pub-flex-1 {
  65. flex: 1;
  66. }
  67. .pub-gray{
  68. color: #b4b3b3;
  69. }
  70. .pub-s-gray {
  71. color: #616161;
  72. }
  73. .pub-orange{
  74. color: #ffb500
  75. }
  76. .pub-green{
  77. color: #0ec358;
  78. }
  79. .pub-red{
  80. color: #ff4c4c
  81. }
  82. .green-background{
  83. background: #0ec358;
  84. border: solid 1px #0ec358!important;
  85. color: #fff;
  86. }
  87. .orange-background{
  88. background: #ffb500;
  89. border: solid 1px #ffb500!important;
  90. color: #fff;
  91. }
  92. .red-background{
  93. background: #ff4c4c;
  94. border: solid 1px #ff4c4c!important;
  95. color: #fff;
  96. }
  97. .dai{
  98. border: solid 1px #0081ff!important;
  99. }
  100. .exam-tan-button {
  101. text-align: center;
  102. }
  103. .white-background{
  104. background: #fff
  105. }
  106. </style>