my-commission.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <!-- 我的佣金 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="card">
  5. <view class="card-label">我的佣金</view>
  6. <view class="card-middle">
  7. <view class="money">
  8. <text>{{info.money}}</text>
  9. </view>
  10. <button type="default" class="btn" @tap="withdraw">立即提现</button>
  11. </view>
  12. <view class="card-bottom">
  13. <view class="card-bottom-row">
  14. <text class="card-bottom-row-label">累计提现</text>
  15. <view class="small-money">
  16. <text>{{info.wallet}}</text>
  17. </view>
  18. </view>
  19. <view class="password-msg" @tap="changePassword">
  20. 修改密码
  21. </view>
  22. </view>
  23. </view>
  24. <scroll-view scroll-x="true" class="tab-list">
  25. <view :class="{ 'active' : isActive === index }" class="child" v-for="(item,index) in navList" :key="index"
  26. @click="checked(index)">
  27. {{item.title}}
  28. </view>
  29. </scroll-view>
  30. <view class="list">
  31. <view class="item" v-for="(item, index) in list" :key="index">
  32. <view class="item-sidebar">
  33. <view class="item-name">
  34. {{item.desc}}
  35. </view>
  36. <view class="item-msg">{{item.create_at}}</view>
  37. </view>
  38. <text v-if="isActive == 0" :class="[item.money > 0 ? 'numadd' : 'numless']">{{item.money > 0 ? '+' : ''}}{{item.money}}</text>
  39. <text v-if="isActive == 1" :class="[item.integral > 0 ? 'numadd' : 'numless']">{{item.integral > 0 ? '+' : ''}}{{item.integral}}</text>
  40. </view>
  41. <!-- <view class="item">
  42. <view class="item-sidebar">
  43. <view class="item-name">
  44. 商品购买
  45. </view>
  46. <view class="item-msg">2020-02-24 14:3:23</view>
  47. </view>
  48. <text :class="[num==true?'numadd':'numless']">{{num==true ? '+' : '-'}}1239.98</text>
  49. </view>
  50. <view class="item">
  51. <view class="item-sidebar">
  52. <view class="item-name">
  53. 商品购买
  54. </view>
  55. <view class="item-msg">2020-02-24 14:3:23</view>
  56. </view>
  57. <text :class="[num==true?'numadd':'numless']">{{num==true ? '+' : '-'}}1239.98</text>
  58. </view> -->
  59. <!-- 无内容时显示 -->
  60. <view class="normal-box" v-if="list.length == 0">
  61. <image src="../../../static/normal-3.png" mode="widthFix"></image>
  62. 暂无佣金明细
  63. </view>
  64. </view>
  65. </view>
  66. </template>
  67. <script>
  68. import {
  69. walletManageWalletInfo,
  70. walletManageGetWithdrawLog,
  71. walletManageGetUserMoneyInfo,
  72. walletManageGetUserIntegralLog,
  73. } from '../../../common/service.js';
  74. export default {
  75. data() {
  76. return {
  77. //选项卡
  78. isActive: 0,
  79. navList: [{
  80. index: 0,
  81. title: '佣金明细',
  82. }, {
  83. index: 1,
  84. title: "提现明细",
  85. }],
  86. num: true,
  87. info: {},
  88. list: [],
  89. page: 1,
  90. page_num: 20,
  91. }
  92. },
  93. onLoad() {
  94. this.walletInfo();
  95. this.getList();
  96. },
  97. methods: {
  98. // 获取钱包详情
  99. walletInfo() {
  100. walletManageWalletInfo({
  101. success: ({code, data, msg}) => {
  102. if (code == 1) {
  103. this.info = data.detail;
  104. } else {
  105. uni.showToast({
  106. icon: 'none',
  107. title: msg,
  108. });
  109. }
  110. },
  111. });
  112. },
  113. // 获取列表
  114. getList(type) {
  115. const {page, page_num, isActive} = this;
  116. const req = isActive == 0 ? walletManageGetUserMoneyInfo : walletManageGetUserIntegralLog;
  117. req({
  118. data: {
  119. page,
  120. page_num,
  121. },
  122. success: res => {
  123. if (res.code === 1) {
  124. const list = res.data.list;
  125. this.list = page > 1 ? [...this.list, ...list] : list;
  126. if (list.length === 0) {
  127. uni.showToast({
  128. icon: 'none',
  129. title: '没有更多数据了'
  130. });
  131. } else {
  132. this.page = this.page + 1;
  133. }
  134. } else {
  135. uni.showToast({
  136. icon: 'none',
  137. title: res.msg
  138. });
  139. }
  140. },
  141. complete: () => {
  142. this.getDataLoading = false;
  143. uni.stopPullDownRefresh();
  144. }
  145. })
  146. },
  147. /**
  148. * 下拉刷新
  149. */
  150. onPullDownRefresh() {
  151. this.getList();
  152. },
  153. /**
  154. * 触底加载
  155. */
  156. onReachBottom() {
  157. this.getList();
  158. },
  159. checked(index) {
  160. this.isActive = index;
  161. this.page = 1;
  162. this.list = [];
  163. this.getList();
  164. },
  165. //跳转登录
  166. withdraw() {
  167. uni.navigateTo({
  168. url: '../withdraw/withdraw'
  169. })
  170. },
  171. //跳转修改密码
  172. changePassword() {
  173. uni.navigateTo({
  174. url: '../change-password/change-password'
  175. })
  176. },
  177. }
  178. }
  179. </script>
  180. <style scoped lang="scss">
  181. @import "./my-commission.css";
  182. </style>