commission-log.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. <!-- 佣金明细 -->
  2. <template>
  3. <view class="commission-log-wrap">
  4. <!-- 钱包卡片 -->
  5. <view class="wallet-wrap">
  6. <view class="wallet-card">
  7. <view class="head-box u-flex">
  8. <view class="head-title">总收益(元)</view>
  9. <button class="u-reset-button look-btn" @tap="showMoney = !showMoney">
  10. <view class="u-iconfont" :class="showMoney ? 'uicon-eye-fill' : 'uicon-eye-off'" style="color: #fff;font-size: 50rpx;"></view>
  11. </button>
  12. </view>
  13. <view class="card-num">{{ showMoney ? agentInfo.total_income || '0.00' : '***' }}</view>
  14. <view class="card-bottom u-flex u-row-left">
  15. <view class="card-item u-flex-1">
  16. <view class="item-title">待入账佣金</view>
  17. <view class="item-value">{{ showMoney ? agentInfo.delay_money || '0.00' : '***' }}</view>
  18. </view>
  19. <view class="card-item u-flex-1">
  20. <view class="item-title">可提现佣金</view>
  21. <view class="item-value">{{ showMoney ? userInfo.money || '0.00' : '***' }}</view>
  22. </view>
  23. </view>
  24. <button class="u-reset-button draw-btn" @tap="jump('/pages/user/wallet/withdraw')">提现</button>
  25. </view>
  26. </view>
  27. <!-- 筛选 -->
  28. <u-sticky offset-top="0" :enable="true">
  29. <view class="head_box u-flex u-row-between">
  30. <button class="u-reset-button date-btn u-flex u-col-center" @tap="showCalendar = true">
  31. {{ selDateText }}
  32. <text class="u-iconfont uicon-arrow-down-fill u-m-l-20" style="color:#e5e5e5 ; font-size: 34rpx;"></text>
  33. </button>
  34. <view class="">
  35. <view class="total-box">{{ stateMap[stateCurrent] }}¥{{ totalMoney || '0.00' }}</view>
  36. </view>
  37. </view>
  38. <!-- 状态分类 -->
  39. <view class="u-flex nav-box">
  40. <view class="state-item u-flex-1 " v-for="(state, index) in statusList" :key="state.value" @tap="onTab(state.value)">
  41. <text class="state-title" :class="{ 'title-active': stateCurrent === state.value }">{{ state.name }}</text>
  42. <text class="underline" :class="{ 'underline-active': stateCurrent === state.value }"></text>
  43. </view>
  44. </view>
  45. </u-sticky>
  46. <view class="item-box">
  47. <!-- 佣金明细列表 -->
  48. <view class="log-item u-flex u-row-between" v-for="item in rewardLog" :key="item.id">
  49. <view class="item-left u-flex">
  50. <image class="log-img" :src="item.buyer.avatar" mode=""></image>
  51. <view class="">
  52. <view class="log-name">{{ item.buyer.nickname }}</view>
  53. <view class="log-notice">{{ $u.timeFormat(item.createtime, 'yyyy.mm.dd') }}</view>
  54. </view>
  55. </view>
  56. <view class="item-right">
  57. <view class="log-num" :style="{ color: classType[item.status] }">{{ item.status < 0 ? '-' : '+' }} {{ item.commission }}</view>
  58. <view class="log-date"></view>
  59. </view>
  60. </view>
  61. <!-- 更多 -->
  62. <u-loadmore v-if="rewardLog.length" height="80rpx" :status="loadStatus" icon-type="flower" color="#ccc" />
  63. <!-- 缺省页 -->
  64. <shopro-empty v-if="isEmpty" marginTop="100rpx" :image="$IMG_URL + '/imgs/empty/no_data.png'" tipText="暂无数据"></shopro-empty>
  65. </view>
  66. <!-- 日期选择 -->
  67. <u-calendar
  68. v-model="showCalendar"
  69. safeAreaInsetBottom
  70. ref="uCalendar"
  71. mode="range"
  72. start-text="开始"
  73. end-text="结束"
  74. active-bg-color="#7063d2"
  75. active-color="#fff"
  76. range-bg-color="#e5e2ff"
  77. range-color="#7063d2"
  78. :customStyle="{ background: 'linear-gradient(90deg, #A36FFF, #5336FF)', boxShadow: '0 7rpx 11rpx 2rpx rgba(124, 103, 214, 0.34)' }"
  79. @change="selDate"
  80. ></u-calendar>
  81. </view>
  82. </template>
  83. <script>
  84. import { mapMutations, mapActions, mapState, mapGetters } from 'vuex';
  85. export default {
  86. components: {},
  87. data() {
  88. return {
  89. stateCurrent: 'all', //默认
  90. stateMap: {
  91. all: '全部收入',
  92. waiting: '待入账',
  93. accounted: '已入账',
  94. back: '已退回',
  95. cancel: '已取消'
  96. },
  97. classType: {
  98. '-1': '#EB2B3D',
  99. '0': '#05C3A1',
  100. '1': '#7063D2',
  101. '-2': '#EEEEEE'
  102. },
  103. statusList: [
  104. {
  105. name: '全部',
  106. value: 'all'
  107. },
  108. {
  109. name: '待入账',
  110. value: 'waiting'
  111. },
  112. {
  113. name: '已入账',
  114. value: 'accounted'
  115. },
  116. {
  117. name: '已退回',
  118. value: 'back'
  119. },
  120. {
  121. name: '已取消',
  122. value: 'cancel'
  123. }
  124. ],
  125. showMoney: true, //是否显示金额
  126. //日期选择
  127. showCalendar: false,
  128. selDateText: '',
  129. rewardLog: [], //佣金记录
  130. propsDate: '', //日期参数
  131. totalMoney: '', //收入
  132. loadStatus: 'loadmore', //loadmore-加载前的状态,loading-加载中的状态,nomore-没有更多的状态
  133. currentPage: 1,
  134. lastPage: 1,
  135. isEmpty: false
  136. };
  137. },
  138. computed: {
  139. ...mapGetters(['userInfo', 'agentInfo'])
  140. },
  141. onLoad() {
  142. this.getToday();
  143. this.getCommissionLog();
  144. },
  145. onPullDownRefresh() {
  146. this.rewardLog = [];
  147. this.currentPage = 1;
  148. this.lastPage = 1;
  149. this.getCommissionLog();
  150. },
  151. onReachBottom() {
  152. if (this.currentPage < this.lastPage) {
  153. this.currentPage += 1;
  154. this.getCommissionLog();
  155. }
  156. },
  157. methods: {
  158. jump(path, parmas) {
  159. this.$Router.push({
  160. path: path,
  161. query: parmas
  162. });
  163. },
  164. // 切换分类
  165. onTab(state) {
  166. if (this.stateCurrent !== state) {
  167. this.rewardLog = [];
  168. this.currentPage = 1;
  169. this.lastPage = 1;
  170. this.stateCurrent = state;
  171. this.getCommissionLog();
  172. }
  173. },
  174. // 今日
  175. getToday() {
  176. let now = new Date();
  177. this.selDateText = `${now.getFullYear()}.${now.getMonth() + 1}.${now.getDate()}`;
  178. let dateText = `${now.getFullYear()}/${now.getMonth() + 1}/${now.getDate()}`;
  179. this.propsDate = `${dateText}-${dateText}`;
  180. },
  181. // 选择日期
  182. selDate(e) {
  183. this.rewardLog = [];
  184. this.currentPage = 1;
  185. this.lastPage = 1;
  186. this.selDateText = `${e.startYear}.${e.startMonth}.${e.startDay}-${e.endYear}.${e.endMonth}.${e.endDay}`;
  187. let dateText = `${e.startYear}/${e.startMonth}/${e.startDay}-${e.endYear}/${e.endMonth}/${e.endDay}`;
  188. this.propsDate = dateText;
  189. this.getCommissionLog();
  190. this.$refs.uCalendar.init();
  191. },
  192. // 佣金明细
  193. getCommissionLog() {
  194. let that = this;
  195. that.loadStatus = 'loading';
  196. that.$http(
  197. 'commission.rewardLog',
  198. {
  199. date: that.propsDate,
  200. type: that.stateCurrent,
  201. page: that.currentPage
  202. },
  203. '加载中...'
  204. ).then(res => {
  205. uni.stopPullDownRefresh();
  206. if (res.code === 1) {
  207. that.totalMoney = res.data.total_money;
  208. that.rewardLog = [...that.rewardLog, ...res.data.rewards.data];
  209. that.lastPage = res.data.rewards.last_page;
  210. that.isEmpty = !that.rewardLog.length;
  211. that.loadStatus = that.currentPage < res.data.rewards.last_page ? 'loadmore' : 'nomore';
  212. }
  213. });
  214. },
  215. // 加载更多
  216. loadMore() {
  217. if (this.currentPage < this.lastPage) {
  218. this.currentPage += 1;
  219. this.getCommissionLog();
  220. }
  221. }
  222. }
  223. };
  224. </script>
  225. <style lang="scss">
  226. // 分类
  227. .state-item {
  228. height: 100%;
  229. display: flex;
  230. flex-direction: column;
  231. align-items: center;
  232. justify-content: center;
  233. background-color: #fff;
  234. border-bottom: 1rpx solid rgba(#999, 0.5);
  235. .state-title {
  236. color: #666;
  237. font-weight: 500;
  238. font-size: 28rpx;
  239. line-height: 90rpx;
  240. }
  241. .title-active {
  242. color: #333;
  243. }
  244. .underline {
  245. display: block;
  246. width: 68rpx;
  247. height: 4rpx;
  248. background: #fff;
  249. border-radius: 2rpx;
  250. }
  251. .underline-active {
  252. background: #5e49c3;
  253. display: block;
  254. width: 68rpx;
  255. height: 4rpx;
  256. border-radius: 2rpx;
  257. }
  258. }
  259. // 钱包卡片
  260. .wallet-wrap {
  261. background-color: #fff;
  262. padding: 30rpx;
  263. }
  264. .wallet-card {
  265. width: 690rpx;
  266. height: 301rpx;
  267. background: url($IMG_URL+'/imgs/commission/commission_card_bg.png') no-repeat;
  268. background-size: 100% 100%;
  269. border-radius: 20rpx;
  270. padding: 30rpx;
  271. position: relative;
  272. box-shadow: 1rpx 5rpx 16rpx 0px rgba(94, 73, 195, 0.81);
  273. .head-box {
  274. margin-bottom: 20rpx;
  275. .head-title {
  276. font-size: 24rpx;
  277. font-weight: 400;
  278. color: #ffffff;
  279. }
  280. .look-btn {
  281. color: #fff;
  282. font-size: 30rpx;
  283. background: none;
  284. padding: 0;
  285. margin-left: 20rpx;
  286. }
  287. }
  288. .card-num {
  289. font-size: 40rpx;
  290. font-weight: 500;
  291. color: #fefefe;
  292. margin-bottom: 30rpx;
  293. }
  294. .card-bottom {
  295. .card-item {
  296. .item-title {
  297. font-size: 24rpx;
  298. font-weight: 400;
  299. color: #ffffff;
  300. margin-bottom: 10rpx;
  301. }
  302. .item-value {
  303. font-size: 30rpx;
  304. font-weight: 500;
  305. color: #fefefe;
  306. }
  307. }
  308. }
  309. .draw-btn {
  310. position: absolute;
  311. top: 35rpx;
  312. right: 35rpx;
  313. width: 121rpx;
  314. line-height: 58rpx;
  315. background: #ffffff;
  316. border-radius: 29rpx;
  317. padding: 0;
  318. font-size: 24rpx;
  319. font-weight: 500;
  320. color: #5848c4;
  321. }
  322. }
  323. // 表头
  324. .head_box {
  325. height: 120rpx;
  326. padding: 0 30rpx;
  327. background-color: #f6f6f6;
  328. .date-btn {
  329. background-color: #fff;
  330. line-height: 54rpx;
  331. border-radius: 27rpx;
  332. padding: 0 20rpx;
  333. font-size: 24rpx;
  334. font-weight: 500;
  335. color: #666666;
  336. }
  337. .total-box {
  338. font-size: 24rpx;
  339. font-weight: 500;
  340. color: #666666;
  341. }
  342. }
  343. // 佣金明细列表
  344. .item-box {
  345. margin: 20rpx 0;
  346. }
  347. .log-item {
  348. height: 142rpx;
  349. background-color: #fff;
  350. padding: 0 30rpx;
  351. border-bottom: 1rpx solid #eee;
  352. .item-left {
  353. .log-img {
  354. width: 50rpx;
  355. height: 50rpx;
  356. border-radius: 50%;
  357. margin-right: 24rpx;
  358. }
  359. .log-name {
  360. font-size: 28rpx;
  361. font-weight: 500;
  362. color: #333333;
  363. margin-bottom: 12rpx;
  364. }
  365. .log-notice {
  366. font-size: 22rpx;
  367. font-weight: 500;
  368. color: #c0c0c0;
  369. }
  370. }
  371. .item-right {
  372. .log-num {
  373. font-size: 28rpx;
  374. font-weight: 500;
  375. color: #05c3a1;
  376. }
  377. .log-date {
  378. font-size: 24rpx;
  379. font-weight: 400;
  380. color: #c0c0c0;
  381. }
  382. }
  383. }
  384. </style>