index.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <page title="钱包" ref="pageRef" nav-color="transparent">
  3. <view v-if="data" class="info flex-column-align-center">
  4. <image class="bg" :src="resource.center_bg1" mode="scaleToFill" />
  5. <view style="font-size: 60rpx" class="bold color-white">{{data.balance}}</view>
  6. <view class="font6 color-white paddingT2" style="opacity: 0.8">余额</view>
  7. <view class="flex-align-around paddingT15" style="width: 75%">
  8. <view class="btn-withdraw btn-clear" @click="showWithdraw">我要提现</view>
  9. <view class="btn-recharge" @click="showRecharge">充值</view>
  10. </view>
  11. </view>
  12. <tabbar2 custom-class="marginX14 marginY10" :tabs="tabs" @change="clickTab" light />
  13. <view v-if="tableData && tableData.length > 0" class="list">
  14. <view v-for="item in tableData" :key="item.itemId" class="cell border-bottom1 flex-align-between">
  15. <view>
  16. <view class="font4 bold" style="color: #666666">{{item.itemDesc}}</view>
  17. <view class="color-3 font2 paddingT4">{{item.createTime}}</view>
  18. </view>
  19. <view class="font10" :class="[item.type === 'IN' ? 'color-theme' : 'color-1']">
  20. <text v-if="item.type === 'IN'">+</text>
  21. <text v-else-if="item.type === 'OUT'">-</text>
  22. {{item.money}}
  23. </view>
  24. </view>
  25. </view>
  26. <empty v-if="isEmpty" :top="120" />
  27. </page>
  28. </template>
  29. <script>
  30. import pageMixin from './../../mixin/page'
  31. import empty from '@/components/empty'
  32. import loginMixin from '@/mixin/login'
  33. import resource from '@/utils/resource'
  34. import tabbar2 from '@/components/tabbar2'
  35. const Tabs = [
  36. { title: '全部', value: '' },
  37. { title: '收入', value: 'IN' },
  38. { title: '支出', value: 'OUT' }
  39. ]
  40. export default {
  41. mixins: [pageMixin, loginMixin],
  42. components: { empty, tabbar2 },
  43. data() {
  44. return {
  45. tabs: Tabs,
  46. tab: Tabs[0],
  47. resource,
  48. data: null
  49. }
  50. },
  51. onShow() {
  52. this.getData()
  53. this.refresh()
  54. },
  55. onPullDownRefresh() {
  56. this.getData()
  57. this.refresh()
  58. },
  59. onReachBottom() {
  60. this.loadMore()
  61. },
  62. methods: {
  63. init() {
  64. this.getData()
  65. this.refresh()
  66. },
  67. clickTab(item) {
  68. this.tab = item
  69. this.refresh(true)
  70. },
  71. async getData(loading = false) {
  72. const res = await this.$service.wallet.info('CASH', loading)
  73. this.data = res
  74. uni.stopPullDownRefresh()
  75. },
  76. async loadData() {
  77. const res = await this.$service.wallet.bill(
  78. this.pageNum,
  79. this.pageSize,
  80. 'CASH',
  81. this.tab.value
  82. )
  83. return res
  84. },
  85. showRecharge() {
  86. const user = this.$store.getters.user
  87. this.$common.showKefu(`我要充值 (${user.username})`)
  88. // this.$router.push('recharge')
  89. },
  90. async showWithdraw() {
  91. const res = await this.$service.base.track2()
  92. if (res && !res.auditing) {
  93. this.$router.push('withdraw', { type: 'ALIPAY'})
  94. } else {
  95. this.$router.push('withdraw')
  96. }
  97. }
  98. }
  99. }
  100. </script>
  101. <style lang="scss">
  102. </style>
  103. <style lang="scss" scoped>
  104. .info {
  105. margin: 24rpx 28rpx 30rpx;
  106. border-radius: 20rpx;
  107. overflow: hidden;
  108. position: relative;
  109. height: 278rpx;
  110. background: linear-gradient(270deg, #d070ff 0%, #8b3dff 100%);
  111. box-shadow: 0px 0px 10rpx 0px rgba(167, 110, 244, 0.5);
  112. .bg {
  113. position: absolute;
  114. left: 0;
  115. top: 0;
  116. width: 100%;
  117. height: 278rpx;
  118. }
  119. }
  120. .list {
  121. margin: 0 28rpx 28rpx;
  122. border-radius: 20rpx;
  123. overflow: hidden;
  124. background: #fff;
  125. .cell {
  126. padding: 36rpx 30rpx;
  127. }
  128. }
  129. .btn-withdraw,
  130. .btn-recharge {
  131. width: 180rpx;
  132. height: 64rpx;
  133. line-height: 60rpx;
  134. text-align: center;
  135. border-radius: 32rpx;
  136. z-index: 1000;
  137. }
  138. .btn-withdraw {
  139. color: #fff;
  140. border: 2rpx solid #fff;
  141. }
  142. .btn-recharge {
  143. background: #fff;
  144. border: 2rpx solid #fff;
  145. color: #a24eff;
  146. }
  147. </style>