App.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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. [ks-role][hidden] {
  16. display: none!important;
  17. }
  18. uni-page-head .uni-page-head{
  19. position: inherit!important;
  20. }
  21. uni-page-head .uni-page-head~.uni-placeholder{
  22. display: none;
  23. }
  24. body{
  25. font-family: "Hiragino Sans GB", STFangsong, "Microsoft YaHei", Helvetica, STXihei, Arial, serif;
  26. // max-width: 828rpx; //最大宽度自己可以调整
  27. margin: auto !important;
  28. }
  29. page{
  30. font-family: "Hiragino Sans GB", STFangsong, "Microsoft YaHei", Helvetica, STXihei, Arial, serif;
  31. }
  32. /*每个页面公共css */
  33. @import "uview-ui/index.scss";
  34. // 联系客服弹框公共样式
  35. /depp/ .u-load-more-wrap{
  36. margin: 20rpx 0;
  37. }
  38. .buttonType button{
  39. background: transparent;
  40. line-height: 1;
  41. padding: 0;
  42. }
  43. .buttonType button::after{
  44. border: 0;
  45. }
  46. ::-webkit-scrollbar {
  47. display: none;
  48. width: 0 !important;
  49. height: 0 !important;
  50. -webkit-appearance: none;
  51. background: transparent;
  52. color: transparent;
  53. }
  54. .u-flex {
  55. /* #ifndef APP-NVUE */
  56. display: flex;
  57. /* #endif */
  58. flex-direction: row;
  59. align-items: center;
  60. }
  61. .u-flex-wrap {
  62. flex-wrap: wrap;
  63. }
  64. .u-flex-nowrap {
  65. flex-wrap: nowrap;
  66. }
  67. .u-col-center {
  68. align-items: center;
  69. }
  70. .u-col-top {
  71. align-items: flex-start;
  72. }
  73. .u-col-bottom {
  74. align-items: flex-end;
  75. }
  76. .u-row-center {
  77. justify-content: center;
  78. }
  79. .u-row-left {
  80. justify-content: flex-start;
  81. }
  82. .u-row-right {
  83. justify-content: flex-end;
  84. }
  85. .u-row-between {
  86. justify-content: space-between;
  87. }
  88. .u-row-around {
  89. justify-content: space-around;
  90. }
  91. .popupBox{
  92. .maskName {
  93. width: 100%;
  94. position: fixed;
  95. top: 0;
  96. left: 0;
  97. z-index: 999;
  98. height: 100%;
  99. background: rgba(0,0,0,0.5);
  100. overflow: hidden;
  101. }
  102. .newFormName {
  103. background: #FFFFFF;
  104. padding: 10rpx;
  105. position: absolute;
  106. z-index: 9999;
  107. top: 0;
  108. margin: 10rpx;
  109. left: 0;
  110. width: 90%;
  111. border-radius: 20rpx;
  112. }
  113. .newForm {
  114. background: #FFFFFF;
  115. padding: 10rpx;
  116. position: fixed;
  117. z-index: 999;
  118. top: 50%;
  119. margin: 10rpx;
  120. left: 50%;
  121. transform: translate(-50%,-50%);
  122. width: 80%;
  123. border-radius: 20rpx;
  124. .alertContent{
  125. position: relative;
  126. height: 340rpx;
  127. text-align: center;
  128. .title{
  129. font-size: 32rpx;
  130. margin-top: 30rpx;
  131. }
  132. .content{
  133. padding: 60rpx 30rpx;
  134. }
  135. .btn{
  136. position: absolute;
  137. bottom: 0;
  138. left: 0;
  139. width: 100%;
  140. height: 100rpx;
  141. line-height: 100rpx;
  142. text{
  143. display: inline-block;
  144. width: 50%;
  145. font-size: 30rpx;
  146. text-align: center;
  147. }
  148. }
  149. }
  150. }
  151. .nweflex {
  152. padding: 5rpx 10rpx;
  153. background: #007AFF;
  154. color: #FFFFFF;
  155. width: 25%;
  156. text-align: center;
  157. position: absolute;
  158. right: 0;
  159. top: 0;
  160. }
  161. .mask {
  162. width: 100%;
  163. position: absolute;
  164. top: 0;
  165. left: 0;
  166. z-index: 99;
  167. height: calc(100vh - 44px);
  168. background: rgba(0,0,0,0.5);
  169. overflow: hidden;
  170. }
  171. }
  172. </style>