App.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <script>
  2. var xBlufi = require("@/utils/blufi/xBlufi.js");
  3. export default {
  4. data() {
  5. return {
  6. }
  7. },
  8. methods: {
  9. },
  10. onLaunch: function() {
  11. xBlufi.initXBlufi(1);
  12. },
  13. onShow: function() {
  14. },
  15. onHide: function() {
  16. }
  17. }
  18. </script>
  19. <style lang="scss">
  20. /*每个页面公共css */
  21. @import "@/uni_modules/uview-ui/index.scss";
  22. * {
  23. box-sizing: border-box;
  24. }
  25. uni-page-body,
  26. html,
  27. body {
  28. height: 100%;
  29. width: 750rpx;
  30. background: #F6F6F6;
  31. }
  32. .u-button--primary {
  33. background-color: #5776E6;
  34. }
  35. .uni-input-placeholder {
  36. text-align: right;
  37. }
  38. .ml5 {
  39. margin-left: 10rpx;
  40. }
  41. .contain {
  42. height: 100%;
  43. padding-bottom: 120rpx;
  44. padding-top: 24rpx;
  45. overflow-y: auto;
  46. .main {
  47. padding: 0 32rpx;
  48. background-color: #fff;
  49. }
  50. .tijiao {
  51. position: fixed;
  52. width: 100%;
  53. bottom: 0;
  54. left: 0;
  55. background-color: #fff;
  56. padding: 16rpx 32rpx;
  57. box-sizing: border-box;
  58. box-shadow: 0 -6px 12px 0 rgba(153, 153, 153, 0.10);
  59. }
  60. .u-cell__value {
  61. color: #333 !important;
  62. }
  63. }
  64. .tabPage{
  65. width: 100%;
  66. padding-bottom: 172rpx;
  67. box-sizing: border-box;
  68. overflow: hidden;
  69. }
  70. .page{
  71. overflow: hidden;
  72. }
  73. .adf{
  74. display: flex;
  75. }
  76. .adfac{
  77. display: flex;
  78. align-items: center;
  79. }
  80. .adfacjc{
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. }
  85. .adfacjb{
  86. display: flex;
  87. align-items: center;
  88. justify-content: space-between;
  89. }
  90. .adffcjb{
  91. display: flex;
  92. flex-direction: column;
  93. justify-content: space-between;
  94. }
  95. .adffcacjc{
  96. display: flex;
  97. flex-direction: column;
  98. align-items: center;
  99. justify-content: center;
  100. }
  101. .adffcac{
  102. display: flex;
  103. flex-direction: column;
  104. align-items: center;
  105. }
  106. .adffcacjb{
  107. display: flex;
  108. flex-direction: column;
  109. align-items: center;
  110. justify-content: space-between;
  111. }
  112. .zt_btn{
  113. width: 100%;
  114. height: 90rpx;
  115. background: #D9F159;
  116. border-radius: 24rpx;
  117. font-family: PingFangSC, PingFang SC;
  118. font-weight: bold;
  119. font-size: 32rpx;
  120. color: #111111;
  121. line-height: 90rpx;
  122. text-align: center;
  123. letter-spacing: 2rpx;
  124. }
  125. .qx_btn{
  126. width: 100%;
  127. height: 90rpx;
  128. background: #FAFAFA;
  129. border-radius: 24rpx;
  130. font-family: PingFangSC, PingFang SC;
  131. font-weight: 400;
  132. font-size: 32rpx;
  133. color: #393939;
  134. line-height: 90rpx;
  135. text-align: center;
  136. letter-spacing: 2rpx;
  137. }
  138. </style>