money.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <view class="center">
  3. <view class="top">
  4. <image class="top-bg" src="../../static/img/money-bg.png" mode=""></image>
  5. <view class="top-font">现金余额(元)</view>
  6. <view class="num">0.00</view>
  7. </view>
  8. <view class="navbar">
  9. <view class="navbar-item">
  10. <view class="navbar-font">
  11. <image class="navbar-image" src="../../static/img/been.png" mode=""></image>
  12. <view class="font">趣豆</view>
  13. </view>
  14. <view class="navbar-num">200</view>
  15. </view>
  16. <view class="navbar-item">
  17. <view class="navbar-font">
  18. <image class="navbar-image" src="../../static/img/been.png" mode=""></image>
  19. <view class="font">趣豆</view>
  20. </view>
  21. <view class="navbar-num">200</view>
  22. </view>
  23. <view class="navbar-item">
  24. <view class="navbar-font">
  25. <image class="navbar-image" src="../../static/img/been.png" mode=""></image>
  26. <view class="font">趣豆</view>
  27. </view>
  28. <view class="navbar-num">200</view>
  29. </view>
  30. </view>
  31. <u-tabbar activeColor="#375AFE" v-model="current" :list="tabbar" :mid-button="true"></u-tabbar>
  32. </view>
  33. </template>
  34. <script>
  35. import { tabbar } from '@/utils/tabbar.js';
  36. export default {
  37. data() {
  38. return {
  39. tabbar: tabbar,
  40. current: 3
  41. };
  42. }
  43. };
  44. </script>
  45. <style lang="less">
  46. .center {
  47. height: auto;
  48. min-height: 100%;
  49. background: #ffffff;
  50. }
  51. .top {
  52. margin: 20rpx auto 0;
  53. position: relative;
  54. width: 700rpx;
  55. height: 200rpx;
  56. padding: 54rpx 40rpx;
  57. .top-bg {
  58. position: absolute;
  59. top: 0;
  60. left: 0;
  61. right: 0;
  62. width: 700rpx;
  63. height: 200rpx;
  64. }
  65. .top-font {
  66. position: relative;
  67. z-index: 2;
  68. font-size: 32rpx;
  69. font-family: PingFang SC;
  70. font-weight: bold;
  71. color: #ffffff;
  72. line-height: 1;
  73. }
  74. .num {
  75. line-height: 1;
  76. position: relative;
  77. z-index: 2;
  78. margin-top: 24rpx;
  79. font-size: 48rpx;
  80. font-family: PingFang SC;
  81. font-weight: bold;
  82. color: #ffffff;
  83. }
  84. }
  85. .navbar {
  86. width: 700rpx;
  87. background: #FFFFFF;
  88. box-shadow: 0px 0px 20rpx 0px rgba(50, 50, 52, 0.06);
  89. border-radius: 20rpx;
  90. margin: 40rpx auto 0;
  91. padding: 40rpx 0 50rpx;
  92. }
  93. </style>