App.vue 2.3 KB

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