mineMoney.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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>{{i18n.myDeposit}}</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">{{i18n.balance}}</view>
  15. </view>
  16. <view class="basis" @click="toFollow">
  17. <view class="num">225</view>
  18. <view class="characters">{{i18n.mineFollow}}</view>
  19. </view>
  20. <view class="basis" @click="toPackage">
  21. <view class="num">13</view>
  22. <view class="characters">{{i18n.myPackage}}</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. computed:{
  40. i18n(){
  41. return this.$t('index')
  42. }
  43. },
  44. methods:{
  45. jumpBalance(){
  46. uni.navigateTo({
  47. url:'/pageC/accountBalance/accountBalance'
  48. })
  49. },
  50. toEnsure(){
  51. uni.navigateTo({
  52. url:"/pageC/ensureMoney/ensureMoney"
  53. })
  54. },
  55. toFollow(){
  56. uni.navigateTo({
  57. url:'/pageC/mineFollow/mineFollow'
  58. })
  59. },
  60. toPackage(){
  61. uni.navigateTo({
  62. url:"/pageC/myPackage/myPackage"
  63. })
  64. }
  65. },
  66. created() {
  67. }
  68. }
  69. </script>
  70. <style lang="scss">
  71. .mine-money{
  72. height: 110px;
  73. width: 100%;
  74. background-color: #3B3D55;
  75. margin-top: 15px;
  76. border-radius: 10px;
  77. .top{
  78. display: flex;
  79. justify-content: space-between;
  80. align-items: center;
  81. color: #fff;
  82. font-size: 14px;
  83. height: 44px;
  84. .content{
  85. display: flex;
  86. align-items: center;
  87. margin: 0 10px;
  88. }
  89. .money-icon{
  90. width: 18px;
  91. height: 18px;
  92. margin-right: 6px;
  93. }
  94. .right-icon{
  95. display: inline-block;
  96. width: 20px;
  97. height: 20px;
  98. background-image: url('../../../static/mine/309.png');
  99. background-size: 100% 100%;
  100. background-repeat: no-repeat;
  101. }
  102. }
  103. .bottom{
  104. display: flex;
  105. justify-content: space-around;
  106. background-color: #fff;
  107. border-radius: 10px;
  108. height: 66px;
  109. align-items: center;
  110. .num{
  111. font-size: 18px;
  112. color: #333;
  113. text-align: center;
  114. font-weight: 600;
  115. }
  116. .characters{
  117. font-size: 13px;
  118. color: #333;
  119. text-align: center;
  120. }
  121. }
  122. }
  123. </style>