123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- <template>
- <view class="content">
- <view class="view1"
- style="box-shadow: rgba(183, 183, 183, 0.3) 1px 1px 10px 1px;border-radius: 20upx;margin-bottom: 20upx;">
- <view style="display: flex;">
- <view style="margin: 70upx 0 0 20upx;height: 100upx; width: 300upx; text-align: center;">
- <view style="font-size: 56upx;font-weight: 800;">{{ teamCount }} <text
- style="font-size: 24rpx;">人</text> </view>
- <view style="font-size: 24upx;margin-left: 20upx;color: #999999;">已邀请</view>
- </view>
- <view style="margin: 70upx 0 0 75upx;height: 100upx; width: 300upx;text-align: center;" @click="goDet">
- <view style="font-size: 56upx;font-weight: 800;"><text
- style="font-size: 28rpx;">¥</text>{{ teamMoney?teamMoney:0 }}</view>
- <view style="font-size: 24upx;color: #999999;">我的收益</view>
- </view>
- </view>
- <!-- <view style="margin: 20rpx 30rpx;font-size: 28rpx;color: #557EFD;" v-if="yijiyongjin">
- *可得邀请好友消费奖励的{{yijiyongjin*100}}%</view> -->
- <view style="margin: 20rpx 30rpx;font-size: 28rpx;color: #2474FF;" v-if="yijiyongjin">
- *可得一级好友平台佣金的{{yijiyongjin*100}}%</view>
- <view style="margin: 20rpx 30rpx;font-size: 28rpx;color: #2474FF;" v-if="erjiyongjin">
- *可得二级好友平台佣金的{{erjiyongjin*100}}%</view>
- <button class="yaoqing_btn" @click="goYao">邀请好友</button>
- </view>
- <view class="navbar">
- <view class="nav-item" :class="{current: type == 1}" @click="changeList(1)">
- 一级( {{countChildren}} )
- </view>
- <view class="nav-item" :class="{current: type == 2}" @click="changeList(2)">
- 二级( {{countChildrenChildren}} )
- </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: 40%;">昵称</view>
- <view style="width: 35%;text-align: center;">时间</view>
- </view>
- <view class="flex justify-between align-center padding" v-if="list.length > 0" v-for="(item, index) in list"
- :key="index" style="margin-bottom: 16upx;">
- <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/image/logo.png'" class="round"
- style="width: 50rpx;height: 50rpx;"></image>
- </view>
- <view style="width: 40%;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: 35%;text-align: center;">
- <view style="font-size: 28upx;">
- {{ item.createTime.substr(0,10) }}
- </view>
- </view>
- </view>
- <empty v-if="list.length==0" style="height: 50vh;position: relative;"></empty>
- </view>
- </view>
- </template>
- <script>
- import empty from '@/components/empty.vue'
- export default {
- components: {
- empty
- },
- data() {
- return {
- countChildren: 0,
- countChildrenChildren: 0,
- YaoqingShangJin: 0,
- setting: 1,
- list: [],
- page: 1,
- limit: 10,
- type: 1,
- status: 0,
- teamCount: 0,
- teamMoney: 0,
- isFenxiao: '否',
- oneTeamCount: 0,
- twoTeamCount: 0,
- yijiyongjin: '',
- erjiyongjin: '',
- currentTab: 0,
- tabsnva: [{
- loadingType: ''
- }],
- tabList: [{
- state: 'zs',
- text: '一级',
- type: 1,
- number: 0
- }, {
- state: 'fzs',
- text: '二级',
- type: 2,
- number: 0
- }],
- count: 0,
- };
- },
- onLoad() {
- let YaoqingShangJin = this.$queue.getData('YaoqingShangJin');
- if (YaoqingShangJin && YaoqingShangJin != 0) {
- this.YaoqingShangJin = YaoqingShangJin;
- }
- //用户信息
- this.getUserInfo();
- //邀请的用户
- this.getMoney();
- //用户推广信息
- this.getTeamMoney()
- },
- methods: {
- getUserInfo() {
- this.$Request.getT('/app/user/selectUserById').then(res => {
- console.log(res)
- if (res.code == 0) {
- this.yijiyongjin = res.data.divideScale ? res.data.divideScale : 0;
- this.erjiyongjin = res.data.divideTwoScale ? res.data.divideTwoScale : 0;
- uni.setStorageSync('avatar', res.data.avatar)
- uni.setStorageSync('invitationCode', res.data.invitationCode)
- uni.setStorageSync('zhiFuBao', res.data.zhiFuBao)
- uni.setStorageSync('zhiFuBaoName', res.data.zhiFuBaoName)
- }
- });
- },
- //用户推广信息
- getTeamMoney() {
- this.$Request.getT('/app/orders/selectTeamStatistics').then(res => {
- if (res.code == 0) {
- this.teamMoney = res.data.teamMoney
- this.teamCount = res.data.teamCount
- this.countChildren = res.data.oneTeamCount ? res.data.oneTeamCount : 0
- this.countChildrenChildren = res.data.twoTeamCount ? res.data.twoTeamCount : 0
- }
- });
- },
- goYao() {
- uni.navigateTo({
- url: '/pages/my/invitationUser'
- });
- },
- changeList(zhishu) {
- this.page = 1
- this.type = zhishu
- this.getMoney()
- },
- //切换一级二级
- changeTab(e) {
- console.log('eeeeeeeee', e)
- this.currentTab = e.target.current;
- if (this.currentTab == 0) {
- this.type = 1
- this.getMoney()
- } else if (this.currentTab == 1) {
- this.type = 2
- this.getMoney()
- }
- },
- //邀请的用户
- getMoney() {
- this.loadingType = 1;
- 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();
- });
- },
- goDet() {
- uni.navigateTo({
- url: './earnings'
- })
- }
- },
- onPullDownRefresh: function() {
- this.page = 0;
- this.limit = 0;
- this.list = [];
- this.getMoney();
- },
- onReachBottom() {
- if (this.list.length < this.count) {
- this.page = this.page + 1;
- this.getMoney()
- } else {
- uni.showToast({
- title: '没有更多了',
- icon: 'none'
- })
- }
- },
- };
- </script>
- <style lang="scss">
- @import '../../static/css/index.css';
- .view1 {
- background-color: #FFFFFF;
- width: 93%;
- // height: 300upx;
- margin-left: 26upx;
- border-radius: 20upx;
- margin-top: 20upx;
- padding-bottom: 32upx;
- }
- .view2 {
- background-color: #FFFFFF;
- width: 93%;
- // height: 100%;
- border-top-left-radius: 20upx;
- border-top-right-radius: 20upx;
- margin-left: 26upx;
- margin-top: 20upx;
- }
- .navbar {
- display: flex;
- height: 40px;
- box-shadow: 0 1px 5px rgba(0, 0, 0, .06);
- position: relative;
- z-index: 10;
- margin: 0 24rpx;
- border-radius: 50rpx;
- overflow: hidden;
- .nav-item {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- font-size: 15px;
- position: relative;
- &.current {
- background-color: #2474FF;
- color: #FFFFFF;
- &:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 44px;
- height: 0;
- // border-bottom: 2px solid $base-color;
- }
- }
- }
- }
- .yaoqing_btn {
- // width: 80%;
- margin-top: 30upx;
- height: 86upx;
- line-height: 86upx;
- color: #FFFFFF;
- background: #2474FF;
- margin-left: 32upx;
- margin-right: 32upx;
- border-radius: 50rpx;
- background-size: 100%;
- }
- </style>
|