123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513 |
- <template>
- <view class="content">
- <view class="content-money">
- <view class="status_bar">
- <!-- 这里是状态栏 -->
- </view>
- <view class="body-title">
- <view class="goback-box" @click="toBack">
- <image class="goback" src="../../static/icon/fanhui.png" mode=""></image>
- </view>
- <view class="header">我的推广</view>
- </view>
- <view class="content-bg">
- <image src="../../static/img/promotion-bg.png" mode=""></image>
- </view>
- <view class="money-box">
- <view class="money">{{ navList.count||0 }}</view>
- <view>我的推广人数</view>
- </view>
- </view>
- <view class="info-box flex">
- <view class="info-item">
- <view class="info-font">参与人数</view>
- <view class="info-num">{{navList.count||0}}</view>
- </view>
- <view class="shu"></view>
- <view class="info-item">
- <view class="info-font">累计参与积分</view>
- <view class="info-num">{{navList.user_price||0}}</view>
- </view>
- <view class="shu"></view>
- <view class="info-item">
- <view class="info-font">每周团队业绩</view>
- <view class="info-num">{{navList.week_price||0}}</view>
- </view>
- </view>
- <view class="content-box" v-for="(item,index) in navList.user_list" :key="index" >
- <!-- <view class="tgTop">
- <image src="../../static/img/top.png" mode=""></image>
- </view> -->
- <view class="content-box-left">
- <!-- <view class="left-img">
- <image :src="item.avatar" mode=""></image>
- </view> -->
- <view class="right-title">
- <view class="top">
- {{item.nickname}}
- </view>
- <view class="bottom">
- ID:{{item.uid}}
- </view>
- <view class="bottom " style="font-size: 24rpx;">
- 手机号:{{item.phone}}
- </view>
- <view class="bottom " style="font-size: 24rpx;">
- 返回额度:{{item.price}}
- </view>
- <view class="bottom " style="font-size: 24rpx;">
- 参与中金额:{{item.cy_price}}
- </view>
- <!-- <view class="bottom " style="font-size: 24rpx;">
- 待返回金额:{{item.dfh_price}}
- </view>
- <view class="bottom " style="font-size: 24rpx;">
- 充值金额:{{item.order_price}}
- </view> -->
- </view>
- </view>
- <view class="content-box-right">
- <view class="state">
- {{item.zt==0?'间推':'直推'}}
- </view>
- <view class="box-right">
- 参与积分:<span>{{item.price}}</span>
- </view>
- <view class="bottom " style="font-size: 24rpx;">
- 待返回金额:{{item.dfh_price}}
- </view>
- <view class="bottom " style="font-size: 24rpx;">
- 充值金额:{{item.order_price}}
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- myspread,
- tuiguang
- } from '@/api/user.js';
- import {
- mapState,
- mapMutations
- } from 'vuex';
- export default {
- onReady(res) {
- var _this = this;
- uni.getSystemInfo({
- success: resu => {
- const query = uni.createSelectorQuery();
- query.select('.swiper-box').boundingClientRect();
- query.exec(function(res) {
- _this.maxheight = resu.windowHeight - res[0].top + 'px';
- console.log('打印页面的剩余高度', _this.height);
- });
- },
- fail: res => {}
- });
- },
- data() {
- return {
- nowIndex:0,//'当前选中'
- // 头部图高度
-
- maxheight: '',
- tabCurrentIndex: 0,
- navList: {
- state: 0,
- text: '直接推荐',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 5 //每次信息条数
- },
- all: '',
- list: '',
- };
- },
- computed: {
- ...mapState('user', ['userInfo', 'orderInfo', 'hasLogin']),
- getPhone() {
- let reg = /(\d{3})\d{4}(\d{4})/;
- this.navList.user_list.forEach(e => {
- return e.phone.replace(reg, "$1****$2")
- console.log(e.phone.replace(reg, "$1****$2"));
- })
- }
- },
- onLoad(options) {},
- onShow() {
- this.loadData();
- },
- methods: {
- //下拉
- xiala(index) {
- // top.style.height = "200rpx"
- // top.style.backGround = "red"
- this.nowIndex = index
- console.log(this.nowIndex);
- },
- // 页面跳转
- navto(e) {
- uni.navigateTo({
- url: e
- });
- },
- //获取收入支出信息
- async loadData(source) {
- let objList = this.navList
- tuiguang({
- page:objList.page,
- limit:objList.limit,
- }).then(res => {
- console.log(res, 'data');
- this.navList = res.data
- })
- },
- // 点击返回 我的页面
- toBack() {
- uni.switchTab({
- url: '/pages/user/user'
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background: #f8f8f8;
- height: 100%;
- }
- .info-box {
- width: 670rpx;
- height: 186rpx;
- background: #ffffff;
- box-shadow: 0px 0px 20rpx 0px rgba(50, 50, 52, 0.06);
- border-radius: 20rpx;
- margin: -100rpx auto 0;
- position: relative;
- z-index: 2;
- .info-item {
- width: 50%;
- display: flex;
- flex-direction: column;
- align-items: center;
- line-height: 1;
- .info-font {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #999999;
- }
- .info-num {
- margin-top: 30rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #181818;
- }
- }
- .shu {
- width: 2rpx;
- height: 74rpx;
- background: #dcdfe6;
- }
- }
- .status_bar {
- height: var(--status-bar-height);
- width: 100%;
- background: #5dbc7c;
- }
- .content-money {
- position: relative;
- height: 480rpx;
- .content-bg {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- width: 750rpx;
- height: 480rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .body-title {
- height: 80rpx;
- text-align: center;
- font-size: 35rpx;
- position: relative;
- .header {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #fffeff;
- height: 80rpx;
- font-size: 36rpx;
- font-weight: 700;
- z-index: 9;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .goback-box {
- position: absolute;
- left: 18rpx;
- top: 0;
- height: 80rpx;
- display: flex;
- align-items: center;
- }
- .goback {
- z-index: 100;
- width: 34rpx;
- height: 34rpx;
- }
- }
- }
- .money-box {
- position: relative;
- z-index: 2;
- padding-top: 90rpx;
- color: #ffffff;
- text-align: center;
- .money {
- font-size: 72rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #ffffff;
- }
- .text {
- font-size: 30rpx;
- }
- }
- .order-item {
- padding: 20rpx 30rpx;
- line-height: 1.5;
- .title-box {
- width: 100%;
- .title-avatar {
- flex-shrink: 0;
- width: 100rpx;
- height: 100rpx;
- margin-right: 25rpx;
- border-radius: 100%;
- image {
- width: 100%;
- height: 100%;
- border-radius: 100%;
- }
- }
- .list_tpl {
- width: 85%;
- .title {
- display: flex;
- justify-content: flex-start;
- font-size: $font-lg;
- color: $font-color-base;
- overflow: hidden; //超出的文本隐藏
- text-overflow: ellipsis; //溢出用省略号显示
- white-space: nowrap;
- line-height: 1;
- text-align: center;
- .title-name {
- max-width: 40%;
- }
- .dl {
- margin-left: 10rpx;
- width: 93rpx;
- height: 32rpx;
- border-radius: 16rpx;
- image {
- width: 93rpx;
- height: 32rpx;
- border-radius: 16rpx;
- }
- }
- .class {
- display: inline-block;
- margin-left: 10rpx;
- padding: 6rpx;
- text-align: center;
- border: 1px solid #2e58ff;
- border-radius: 16rpx;
- font-size: 20rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #2e58ff;
- }
- }
- .time {
- font-size: $font-base;
- color: $font-color-light;
- }
- }
- }
- .money {
- width: 50%;
- text-align: right;
- color: #db1935;
- font-size: $font-lg;
- }
- }
- .yeji {
- position: relative;
- margin: -72rpx auto 0;
- width: 690rpx;
- height: 143rpx;
- background: #ffffff;
- box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(50, 50, 52, 0.06);
- border-radius: 10rpx;
- display: flex;
- align-items: center;
- .yeji-a {
- width: 50%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- .yeji-top {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .yeji-buttom {
- font-size: 42rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- }
- .border {
- width: 1rpx;
- height: 51rpx;
- background: #dddddd;
- }
- }
- .bottomm{
- padding: 20rpx;
- position: relative;
- background: red;
- display: flex;
- justify-content: space-between;
- margin: 30rpx;
- border-radius: 10rpx;
- }
- .content-box {
- overflow: hidden;
- padding: 20rpx;
- position: relative;
- background: #fffeff;
- display: flex;
- justify-content: space-between;
- margin: 30rpx;
- border-radius: 10rpx;
- .tgTop {
- position: absolute;
- right: 50rpx;
- top: 30rpx;
- width: 30rpx;
- height: 30rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .content-box-left {
- display: flex;
- .left-img {
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- overflow: hidden;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .right-title {
- margin-left: 15rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- .top {
- font-weight: 500;
- font-size: 30rpx;
- }
- .bottom {
- color: #999999;
- }
- }
- }
- .content-box-right {
- display: flex;
- flex-direction: column;
- width: 230rpx;
- color: #999999;
- .state {
- color: red;
- }
- span {
- color: red;
- font-size: 28rpx;
- }
- }
- }
- </style>
|