123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- <template>
- <view>
- <!-- <view class="view1" style="border-radius: 20upx;" @click="goTixian">
- <view>
- <view style="font-size: 40rpx;color: #1789FD;">{{ teamMoney }}</view>
- <view style="font-size: 28rpx;margin-top: 10rpx;">总收益</view>
- </view>
- </view> -->
- <!-- <view class="box">
- <view class="flex align-center justify-between" style="padding: 50upx 50upx;">
- <view>
- <view class="margin-bottom-sm">总收益</view>
- <view style="font-size: 58upx;">{{teamMoney?teamMoney:'0'}}</view>
- </view>
- <view class="btn" @click="goTixian">提现</view>
- </view>
- </view> -->
- <view class="view1" style="border-radius: 20upx;">
- <view style="display: flex;flex-direction: row;">
- <view style="margin: 40upx 0 0 60upx;height: 100upx; width: 150upx;text-align: center;">
- <view style="font-size: 40rpx;color: #346EF6;">{{ teamMoney }}</view>
- <view style="font-size: 28rpx;margin-top: 10rpx;">总收益</view>
- </view>
- <view style="margin: 40upx 0 0 60upx;height: 100upx; width: 150upx;text-align: center;">
- <view style="font-size: 40rpx;color: #346EF6;">{{ oneTeamMoney }}</view>
- <view style="font-size: 28rpx;margin-top: 10rpx;">一级收益</view>
- </view>
- <view style="margin: 40upx 0 0 60upx;height: 100upx; width: 150upx;text-align: center;">
- <view style="font-size: 40rpx;color: #346EF6;">{{ twoTeamMoney }}</view>
- <view style="font-size: 28rpx;margin-top: 10rpx;">二级收益</view>
- </view>
- </view>
- <view class="flex align-center justify-between margin-top-xl padding-lr-xl">
- <view class="btn" @click="goTixian">提现</view>
- <view class="btn " @click="golist">收益明细</view>
- </view>
- </view>
- <view class="navbar">
- <view v-for="(item, index) in tabList" :key="index" class="nav-item" :class="{current: type == item.type}"
- @click="changeList(item.type)">
- {{item.text}}
- </view>
- </view>
- <view class="view2"
- style="box-shadow: rgba(183, 183, 183, 0.3) 1px 1px 10px 1px;border-radius: 20upx;margin-bottom: 50upx;">
- <view style="display: flex;flex-direction: row;padding: 20upx;">
- <view style="width: 15%;">编号</view>
- <view style="width: 20%;">头像</view>
- <view style="width: 45%;">昵称</view>
- <view style="width: 30%;text-align: center;">奖励</view>
- </view>
- <view class="flex justify-between align-center padding" v-for="(item, index) in list" :key="index">
- <view style="width: 15%;">
- <view style="font-size: 28upx;margin-left: 15upx;margin-top: 6upx;">{{ index + 1 }}
- </view>
- </view>
- <view style="width: 20%;">
- <image :src="item.avatar?item.avatar:'../../static/logo.png'" class="round"
- style="width: 50rpx;height: 50rpx;"></image>
- </view>
- <view style="width: 45%;display: flex;flex-direction: row;align-items: center;">
- <view style="font-size: 28upx;width: 90%;overflow: hidden;">{{ item.userName?item.userName:'' }}
- </view>
- </view>
- <view style="width: 30%;text-align: center;display: flex;justify-content: center;align-items: center;">
- <view style="font-size: 32upx;color: #FF7F00;">¥{{ item.money ? item.money : 0 }}</view>
- </view>
- </view>
- <empty v-if="list.length==0" style="height: 70vh;position: relative;"></empty>
- </view>
- </view>
- </template>
- <script>
- import empty from '@/components/empty.vue'
- export default {
- components: {
- empty
- },
- data() {
- return {
- total: 0,
- first: 0,
- second: 0,
- list: [],
- page: 1,
- limit: 10,
- tabIndex: 1,
- checkReZhiShu: '否',
- checkReTuanZhang: '否',
- checkReFeiZhiShu: '否',
- scrollTop: false,
- tabList: [{
- state: 'zs',
- text: '一级',
- type: 1,
- number: 0
- }, {
- state: 'fzs',
- text: '二级',
- type: 2,
- number: 0
- }, ],
- type: 1,
- teamMoney: 0,
- oneTeamMoney: 0,
- twoTeamMoney: 0,
- count: 0,
- }
- },
- onLoad() {
- this.$queue.showLoading("加载中...");
- this.getTeamMoney()
- this.getList();
- },
- onPageScroll: function(e) {
- this.scrollTop = e.scrollTop > 200;
- },
- methods: {
- golist() {
- uni.navigateTo({
- url: '/my/wallet/moneydetail'
- })
- },
- changeList(e) {
- this.page = 1
- this.type = e
- this.getList()
- },
- getTeamMoney() {
- this.$Request.getT('/app/orders/selectTeamStatistics').then(res => {
- if (res.code == 0) {
- this.teamMoney = res.data.teamMoney ? res.data.teamMoney : 0;
- this.oneTeamMoney = res.data.oneTeamMoney ? res.data.oneTeamMoney : 0;
- this.twoTeamMoney = res.data.twoTeamMoney ? res.data.twoTeamMoney : 0;
- }
- });
- },
- //收益列表
- getList() {
- uni.showLoading({
- title: '加载中...'
- });
- let data = {
- page: this.page,
- limit: this.limit,
- type: this.type
- }
- this.$Request.getT('/app/orders/selectTeamUserList', data).then(res => {
- if (res.code == 0 && res.data) {
- this.count = res.data.totalPage
- if (this.page == 1) {
- this.list = res.data.list
- } else {
- this.list = [...this.list, ...res.data.list]
- }
- }
- uni.hideLoading();
- });
- },
- goTixian() {
- uni.navigateTo({
- url: '/my/wallet/wallet'
- })
- }
- },
- onReachBottom: function() {
- if (this.list.length < this.count) {
- this.page = this.page + 1;
- this.getList();
- } else {
- uni.showToast({
- title: '没有更多了',
- icon: 'none'
- })
- }
- },
- onPullDownRefresh: function() {
- this.page = 1;
- this.getList();
- }
- }
- </script>
- <style lang="less">
- page {
- background-color: #FFFFFF;
- }
- .btn {
- width: 280rpx;
- text-align: center;
- // background: fd6f4b;
- background: linear-gradient(90deg, #6C91FE 0%, #4965F9 100%);
- // background: linear-gradient(90deg, #f49471 0%, #fd6f4b 100%);
- border-radius: 35upx;
- padding: 16upx 45upx;
- color: #FFFFFF;
- }
- .box {
- margin: 30upx;
- background: linear-gradient(90deg, #6C91FE 0%, #4965F9 100%);
- border-radius: 24upx;
- color: #FFFFFF;
- }
- // .btn {
- // background: linear-gradient(90deg, #9DB6FF 0%, #7D92FF 100%);
- // border-radius: 35upx;
- // padding: 16upx 45upx;
- // color: #FFFFFF;
- // }
- .view1 {
- background-color: #FFFFFF;
- width: 93%;
- // height: 300upx;
- margin-left: 26upx;
- border-radius: 20upx;
- margin-top: 20upx;
- box-shadow: 7px 9px 34px rgba(0, 0, 0, 0.1);
- text-align: center;
- padding-bottom: 20rpx;
- // padding: 100upx 0;
- }
- .view2 {
- background-color: #FFFFFF;
- width: 93%;
- margin-left: 26upx;
- border-radius: 20upx;
- margin-top: 20upx;
- margin-bottom: 20upx;
- }
- .yaoqing_view {
- width: 95%;
- display: flex;
- position: fixed;
- bottom: 100rpx;
- justify-content: center;
- }
- .yaoqing_btn {
- width: 520rpx;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- background: #1789FD;
- // color: #FFFFFF;
- border-radius: 50rpx;
- }
- .tui-tab-item-title {
- // color: #ffffff;
- font-size: 30rpx;
- height: 80rpx;
- line-height: 80rpx;
- flex-wrap: nowrap;
- white-space: nowrap;
- }
- .tui-tab-item-title-active {
- border-bottom: 1px solid #5E81F9;
- color: #5E81F9;
- font-size: 32upx;
- font-weight: bold;
- border-bottom-width: 6upx;
- text-align: center;
- }
- .item {
- background: #f5f5f5;
- padding: 32rpx;
- margin: 32rpx;
- font-size: 28rpx;
- box-shadow: 7px 9px 34px rgba(0, 0, 0, 0.1);
- border-radius: 16upx;
- }
- .navbar {
- display: flex;
- height: 40px;
- border-radius: 20upx;
- box-shadow: 0 1px 5px rgba(0, 0, 0, .06);
- position: relative;
- z-index: 10;
- margin: 20upx 24upx 0;
- border-radius: 16upx;
- overflow: hidden;
- .nav-item {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- font-size: 15px;
- // color: $font-color-dark;
- position: relative;
- &.current {
- // color: $base-color;
- background-color: #346EF6;
- color: #FFFFFF;
- &:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 44px;
- height: 0;
- // border-bottom: 2px solid $base-color;
- }
- }
- }
- }
- </style>
|