123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <template>
- <view class="commision-page">
- <view class="back">
- <tui-icon name="arrowleft" color="#000" :size="30" @click="handleBack"></tui-icon>
- </view>
- <!-- 上面三个统计 -->
- <view class="top-pane">
- <view class="item" @click="go('/another-tf/another-user/commission-statistics/commission-detail?tag=1')">
- <image class="img" src="../../../static/images/new-user/group/today-price.png"></image>
- <view class="text">今日佣金</view>
- <view class="value">¥{{ commissionData.todaySum || 0 }}</view>
- </view>
- <view class="item" @click="go('/another-tf/another-user/commission-statistics/commission-detail?tag=2')">
- <image class="img" src="../../../static/images/new-user/group/total-price.png"></image>
- <view class="text">累计佣金</view>
- <view class="value">¥{{ commissionData.remainAmount || 0 }}</view>
- </view>
- <view class="item" @click="go('/another-tf/another-user/commission-statistics/commission-detail?tag=3')">
- <image class="img" src="../../../static/images/new-user/group/lu-price.png"></image>
- <view class="text">途中佣金</view>
- <view class="value">¥{{ commissionData.inTheAccount || 0 }}</view>
- </view>
- </view>
- <!-- 列表统计 -->
- <view class="list">
- <view class="list-wrapper">
- <view class="item" @click="go('/another-tf/another-user/commission-statistics/vip-user')">
- <image class="img" src="../../../static/images//new-user/group/total-vip-number.png"></image>
- <view class="text">累计会员(个)</view>
- <view class="value">{{ commissionData.fans || 0 }}</view>
- </view>
- <view class="item" @click="go('/another-tf/another-user/commission-statistics/vip-user?date=now')">
- <image class="img" src="../../../static/images//new-user/group/today-vip-number.png"></image>
- <view class="text">今日会员(个)</view>
- <view class="value">{{ commissionData.todayFans || 0 }}</view>
- </view>
- <!-- <view class="item">
- <image class="img" src="../../static/images//new-user/group/can-whith.png"></image>
- <view class="text">可提现(元)</view>
- <view class="value">{{ commissionData.totalAmount || 0 }}</view>
- </view>
- <view class="item">
- <image class="img" src="../../static/images//new-user/group/has-whitdh.png"></image>
- <view class="text">已提现(元)</view>
- <view class="value">{{ commissionData.withdrawAmount || 0 }}</view>
- </view> -->
- </view>
- <view class="button-wrapper">
- <!-- <view class="tip">可提现 ¥{{ commissionData.totalAmount || 0 }}</view> -->
- <button
- :class="{ disabled: !commissionData.totalAmount || commissionData.totalAmount == 0 }" class="uni-btn"
- @click="handleWithdrawal(commissionData.totalAmount)"
- >
- 去提现
- </button>
- </view>
- </view>
- <tui-toast ref="toast"></tui-toast>
- </view>
- </template>
- <script>
- import { getSmallAccountBookStatisticsApi } from '../../../api/anotherTFInterface'
- export default {
- data() {
- return {
- commissionData: {}
- }
- },
- onShow() {
- this.getCommissionData()
- },
- methods: {
- handleBack() {
- uni.switchTab({
- url: '/'
- })
- },
- async getCommissionData() {
- try {
- const res = await getSmallAccountBookStatisticsApi()
- this.commissionData = res.data
- } catch (error) {
- this.ttoast({
- type: 'fail',
- content: error || '获取佣金信息失败',
- title: '获取佣金详情失败'
- })
- } finally {
- uni.stopPullDownRefresh()
- }
- },
- async getVipCommissionStatistics() {
- },
- // 点击提现
- handleWithdrawal(account) {
- // if (!account) {
- // this.ttoast({
- // type: 'fail',
- // title: '佣金正在审批中'
- // });
- // return;
- // }
- uni.navigateTo({
- url: '/another-tf/another-user/platform-recharge/index'
- })
- }
- },
- onPullDownRefresh() {
- this.getCommissionData()
- }
- }
- </script>
- <style lang="less" scoped>
- .commision-page {
- position: relative;
- width: 100vw;
- min-height: 100vh;
- background-color: #f5f7fb;
- display: flex;
- align-items: center;
- flex-direction: column;
- .back {
- position: absolute;
- top: 40upx;
- left: 40upx;
- right: 40upx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .uni-btn {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 28upx;
- .img {
- width: 50upx;
- height: 50upx;
- margin-right: 8upx;
- }
- }
- }
- .top-pane {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 206upx 56upx 56upx 56upx;
- box-sizing: border-box;
- width: 100vw;
- .item {
- display: flex;
- align-items: center;
- flex-direction: column;
- font-size: 26upx;
- counter-reset: #3d3d3d;
- .text {
- margin: 16upx 0 12upx 0;
- }
- .value {
- font-weight: 500;
- }
- }
- }
- .list {
- flex: 1;
- width: 100vw;
- background-color: #fff;
- padding-bottom: 56upx;
- border-radius: 80upx 80upx 0 0;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .list-wrapper {
- width: 100%;
- padding: 60upx 56upx;
- box-sizing: border-box;
- }
- .item {
- display: flex;
- align-items: center;
- margin-bottom: 46upx;
- .text {
- flex: 1;
- margin-right: 30upx;
- margin-left: 30upx;
- }
- }
- .button-wrapper {
- width: 100%;
- .tip {
- text-align: center;
- margin-bottom: 20upx;
- font-size: 24upx;
- }
- .uni-btn {
- height: 80upx;
- width: 702upx;
- margin: 0 auto;
- background-color: #fe751a;
- color: #fff;
- font-size: 30upx;
- font-weight: 500;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: all 350ms;
- &.disabled {
- opacity: 0.7;
- }
- &:active {
- background-color: #ff8f44;
- }
- }
- }
- }
- }
- .img {
- width: 80upx;
- height: 80upx;
- flex-shrink: 0;
- }
- </style>
|