mineMoney.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <!-- 余额组件 -->
  3. <view class="mine-money" id="mine-money" :style="{'height':isTeam?'110px':'66px'}">
  4. <view class="top" v-if="isTeam" @click="toEnsure">
  5. <view class="content">
  6. <image class="money-icon" src='../../../static/mine/308.png' mode=""></image>
  7. <text>我的保证金</text>
  8. </view>
  9. <view class="content">200.00 <text class="right-icon"></text> </view>
  10. </view>
  11. <view class="bottom">
  12. <view class="basis" @click="jumpBalance">
  13. <view class="num">0.00</view>
  14. <view class="characters">余额</view>
  15. </view>
  16. <view class="basis" @click="toFollow">
  17. <view class="num">225</view>
  18. <view class="characters">我的关注</view>
  19. </view>
  20. <view class="basis">
  21. <view class="num">13</view>
  22. <view class="characters">我的包裹</view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. props:{
  30. isTeam:{
  31. type:Boolean,
  32. default:false
  33. }
  34. },
  35. data(){
  36. return{
  37. }
  38. },
  39. methods:{
  40. jumpBalance(){
  41. uni.navigateTo({
  42. url:'/pageC/accountBalance/accountBalance'
  43. })
  44. },
  45. toEnsure(){
  46. uni.navigateTo({
  47. url:"/pageC/ensureMoney/ensureMoney"
  48. })
  49. },
  50. toFollow(){
  51. uni.navigateTo({
  52. url:'/pageC/mineFollow/mineFollow'
  53. })
  54. }
  55. },
  56. created() {
  57. }
  58. }
  59. </script>
  60. <style lang="scss">
  61. .mine-money{
  62. height: 110px;
  63. width: 100%;
  64. background-color: #3B3D55;
  65. margin-top: 15px;
  66. border-radius: 10px;
  67. .top{
  68. display: flex;
  69. justify-content: space-between;
  70. align-items: center;
  71. color: #fff;
  72. font-size: 14px;
  73. height: 44px;
  74. .content{
  75. display: flex;
  76. align-items: center;
  77. margin: 0 10px;
  78. }
  79. .money-icon{
  80. width: 18px;
  81. height: 18px;
  82. margin-right: 6px;
  83. }
  84. .right-icon{
  85. display: inline-block;
  86. width: 20px;
  87. height: 20px;
  88. background-image: url('../../../static/mine/309.png');
  89. background-size: 100% 100%;
  90. background-repeat: no-repeat;
  91. }
  92. }
  93. .bottom{
  94. display: flex;
  95. justify-content: space-around;
  96. background-color: #fff;
  97. border-radius: 10px;
  98. height: 66px;
  99. align-items: center;
  100. .num{
  101. font-size: 18px;
  102. color: #333;
  103. text-align: center;
  104. font-weight: 600;
  105. }
  106. .characters{
  107. font-size: 13px;
  108. color: #333;
  109. text-align: center;
  110. }
  111. }
  112. }
  113. </style>