123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- <template>
- <view class="content">
- <!-- <view class="navbar coupon">
- <view class="nav-item grenn" v-if="tabCurrentIndex == 0">
- 一级总业绩:
- <text>{{ one_price }}</text>
- </view>
- <view class="nav-item black" v-if="tabCurrentIndex == 1">
- 二级总业绩:
- <text>{{ two_price }}</text>
- </view>
- </view> -->
- <view class="navbar">
- <view v-for="(item, index) in navList" :key="index" class="nav-item" :class="{ current: tabCurrentIndex === index }" @click="tabClick(index)">{{ item.text }}:{{item.number}}人</view>
- </view>
- <swiper :current="tabCurrentIndex" :style="{ height: maxheight + 'px' }" class="swiper-box" duration="300" @change="changeTab">
- <swiper-item class="tab-content" v-for="(tabItem, tabIndex) in navList" :key="tabIndex">
- <scroll-view class="list-scroll-content" scroll-y @scrolltolower="loadData">
- <!-- 空白页 -->
- <empty v-if="tabItem.loaded === true && tabItem.orderList.length === 0"></empty>
-
- <!-- 订单列表 -->
- <view v-for="(item, index) in tabItem.orderList" :key="index" class="order-item flex">
- <view class="title-box flex_item">
- <view class="title-avatar"><image :src="item.avatar"></image></view>
- <view style="width: 80%;">
- <view class="title flex">
- <view class="clamp" style="width: 350rpx;overflow: hidden;">{{ item.nickname }}</view>
- <view class="clamp time" style="width: 280rpx;overflow: hidden;text-align: right;">总消费:{{ item.numberCount || 0.0 }}</view>
- </view>
- <view class="time flex">
- <!-- <view>{{ item.time }}</view> -->
- <view class="phone">{{ item.phone ? item.phone : '暂无手机号' }}</view>
- <view class="text">{{ item.lastTime | lastTime }}</view>
- </view>
- </view>
- </view>
- </view>
- <uni-load-more :status="tabItem.loadingType"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
- </template>
- <script>
- import { spread_people } from '@/api/team.js';
- import { mapState, mapMutations } from 'vuex';
- import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
- import empty from '@/components/empty';
- import { getTime } from '@/utils/rocessor.js';
- // 获取当前时间的秒数
- const time = Math.floor(new Date().getTime() / 1000);
- export default {
- components: {
- empty,
- uniLoadMore
- },
- filters: {
- lastTime: function(value) {
- const day = Math.floor((time - value) / 60 / 60 / 24);
- return day == 0 ? '今天登陆' : day + '天前登陆';
- }
- },
- onReady() {
- // 初始化获取页面宽度
- uni.createSelectorQuery()
- .select('.content')
- .fields(
- {
- size: true
- },
- data => {
- console.log(data);
- // console.log(Math.floor((data.width / 750) * 300));
- // 保存头部高度
- this.maxheight = data.height - Math.floor((data.width / 750) * 220);
- console.log(this.maxheight);
- }
- )
- .exec();
- },
- data() {
- return {
- // 头部图高度
- maxheight: '',
- tabCurrentIndex: 0,
- navList: [
- {
- state: 0,
- text: '一级',
- loadingType: 'more',
- orderList: [],
- number:0,
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 1,
- text: '二级',
- loadingType: 'more',
- number:0,
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- }
- ],
- all: '',
- list: '',
- total: '',
- totalLevel: '',
- img: 'http://kaifa.crmeb.net/uploads/attach/2019/08/20190807/723adbdd4e49a0f9394dfc700ab5dba3.png',
- one_price: '', //一级总金额
- two_price: '' //二级总金额
- };
- },
- onLoad(options) {},
- onShow() {
- this.loadData();
- },
- methods: {
- // 页面跳转
- navto(e) {
- uni.navigateTo({
- url: e
- });
- },
- //获取收入支出信息
- async loadData(source) {
- let obj = this;
- //这里是将订单挂载到tab列表下
- let index = this.tabCurrentIndex;
- let navItem = this.navList[index];
- let state = navItem.state;
- if (source === 'tabChange' && navItem.loaded === true) {
- //tab切换只有第一次需要加载数据
- return;
- }
- if (navItem.loadingType === 'loading') {
- //防止重复加载
- return;
- }
- // 修改当前对象状态为加载中
- navItem.loadingType = 'loading';
- spread_people({
- page: navItem.page,
- limit: navItem.limit,
- keyword: '',
- sort: 'lastTime desc',
- grade: state
- })
- .then(({ data }) => {
- obj.navList[0].number = data.total;
- obj.navList[1].number = data.totalLevel;
- obj.one_price = data.one_price; //一级总金额
- obj.two_price = data.two_price; //二级总金额
- let arr = data.list.map(e => {
- e.lastTimeString = getTime(e.lastTime);
- return e;
- });
- console.log(arr,'arr')
- navItem.orderList = navItem.orderList.concat(data.list);
- navItem.page++;
- console.log(navItem.page,'page')
- console.log(navItem.limit,arr.length,'11')
- if (navItem.limit == data.length) {
- //判断是否还有数据, 有改为 more, 没有改为noMore
- navItem.loadingType = 'more';
- return;
- } else {
- //判断是否还有数据, 有改为 more, 没有改为noMore
- navItem.loadingType = 'noMore';
- }
- this.$set(navItem, 'loaded', true);
- })
- .catch(e => {
- console.log(e);
- });
- },
- //swiper 切换
- changeTab(e) {
- this.tabCurrentIndex = e.target.current;
- this.loadData('tabChange');
- },
- //顶部tab点击
- tabClick(index) {
- this.tabCurrentIndex = index;
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background: #ffffff;
- height: 100%;
- }
- .content-money {
- padding-bottom: 30rpx;
- background: $page-color-base;
- .buttom-box {
- background-color: #ffffff;
- text-align: center;
- margin: 0 30rpx;
- padding: 30rpx 0;
- border-radius: $border-radius-sm;
- margin-top: -60rpx;
- .buttom {
- font-size: $font-lg;
- flex-grow: 1;
- .money {
- font-weight: bold;
- font-size: 32rpx;
- color: #db1935;
- }
- }
- .text {
- color: #666666;
- }
- .interval {
- width: 2rpx;
- height: 60rpx;
- background-color: #eeeeee;
- }
- .icon {
- height: 50rpx;
- width: 48rpx;
- margin: 0 auto;
- .icon-img {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- .money-box {
- background: #bc253a;
- height: 320rpx;
- color: #ffffff;
- text-align: center;
- font-size: 35rpx;
- padding-top: 60rpx;
- .money_img {
- width: 100%;
- height: 120rpx;
- text-align: center;
- padding-top: 50rpx;
- padding-bottom: 135rpx;
- image {
- width: 120rpx;
- height: 120rpx;
- border: 4rpx solid #fd5f6f;
- border-radius: 50%;
- }
- }
- .money_name {
- width: 100%;
- text-align: center;
- font-size: 40rpx;
- padding-bottom: 25rpx;
- }
- }
- .navbar {
- display: flex;
- height: 40px;
- padding: 0 5px;
- background: #fff;
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
- position: relative;
- z-index: 10;
- .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: $font-color;
- background-color: #dcdfe6;
- // color: #FC2A3F;
- // &:after {
- // content: '';
- // position: absolute;
- // left: 50%;
- // bottom: 0;
- // transform: translateX(-50%);
- // width: 44px;
- // height: 0;
- // border-bottom: 2px solid #FC2A3F;
- // }
- }
- }
- .grenn {
- background: #2fbd5b;
- }
- .black {
- background: #434343;
- }
- .grenn,
- .black {
- color: #ffffff;
- text-align: left;
- }
- }
- // 列表
- .swiper-box {
- padding-top: 10rpx;
- height: calc(100% - 80px);
- .order-item {
- padding: 20rpx 30rpx;
- line-height: 1.5;
- .title-box {
- width: 100%;
- .title-avatar {
- width: 100rpx;
- height: 100rpx;
- margin-right: 25rpx;
- image {
- width: 100%;
- height: 100%;
- border-radius: 100%;
- }
- }
- .title {
- font-size: $font-lg;
- color: $font-color-base;
- }
- .time {
- font-size: $font-base;
- color: $font-color-light;
- }
- }
- .money {
- color: #db1935;
- font-size: $font-lg;
- }
- }
- }
- .list-scroll-content {
- height: 100%;
- }
- .content {
- height: 100%;
- .empty-content {
- background-color: #ffffff;
- }
- }
- </style>
|