123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- <template>
- <view class="content">
- <view class="navbar">
- <view v-for="(item, index) in navList" :key="index" class="nav-item" :class="{ current: tabCurrentIndex === index }" @click="tabClick(index)">{{ item.text }}</view>
- </view>
- <swiper :current="tabCurrentIndex" :style="{ height: maxheight }" class="swiper-box" duration="300" @change="changeTab">
- <swiper-item class="tab-content" v-for="(tabItem, tabIndex) in navList" :key="tabIndex">
- <scroll-view scroll-y="true" class="list-scroll-content" @scrolltolower="getList()">
- <!-- 空白页 -->
- <empty v-if="tabItem.loaded === true && tabItem.orderList.length === 0"></empty>
-
- <!-- 订单列表 -->
- <view class="order-item flex" v-for="(item, index) in tabItem.orderList" :key="index">
- <view class="title-box">
- <view class="title">
- <text>{{ item.title }}</text>
- </view>
- <view class="time">
- <text>{{ item.add_time }}</text>
- </view>
- </view>
- <view class="money">
- <text>{{ (item.pm == 0 ? '-' : '+') + item.number }}</text>
- </view>
- </view>
- <uni-load-more :status="tabItem.loadingType"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
- </template>
- <script>
- import { spreadCommission } from '@/api/wallet.js';
- export default {
- data() {
- return {
- maxheight: '',
- tabCurrentIndex: 0,
- navList: [
- {
- state: 1,
- text: '收入',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页面
- limit: 10 //每次信息条数
- },
- {
- state: 0,
- text: '支出',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页面
- limit: 10 //每次信息条数
- }
- ],
- type: 0,//1-复投积分 2-佣金 3-分红额度 4-消费积分
- }
- },
- onLoad(opt) {
- this.type = opt.type
- },
- onShow() {
- this.getList()
- },
- 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.maxheight);
- });
- },
- fail: res => {}
- });
- },
- methods:{
- //顶部tab点击
- tabClick(index) {
- this.tabCurrentIndex = index;
- },
- changeTab(res) {
- console.log(res);
- let that = this
- that.tabCurrentIndex = res.detail.current
- that.getList('tab')
- },
- getList(type) {
- let that = this
- let item = that.navList[that.tabCurrentIndex]
- let status = 0
- let qdata = {
- page: item.page,
- limit: item.limit,
- }
- if(type == 'tab' && item.loaded) {
- return
- }
- if(item.loadingType == 'noMore' || item.loadingType == 'loading') {
- return
- }
- item.loadingType = 'loading'
- if(that.type == 2 || that.type ==4) {
- if(that.type == 2 ) {
- if(item.state == 1) {
- status =3
- }else {
- status = 4
- }
- }else {
- if(item.state == 1) {
- status = 2
- }else {
- status =1
- }
- }
-
- }else {
-
- if(that.type == 1) {
- status = 7
- qdata.category = 'resumption'
- if(item.state == 1) {
- qdata.pm = 1
- }else {
- qdata.pm = 0
- }
- }else if(that.type == 3){
- status = 6
- qdata.category = 'pool'
- if(item.state == 1) {
- qdata.pm = 1
- }else {
- qdata.pm = 0
- }
- }else if(that.type == 8) {
- status = 8
- qdata.category = 'points'
- if(item.state == 1) {
- qdata.pm = 1
- }else {
- qdata.pm = 0
- }
- }else if(that.type == 9) {
- status = 9
- qdata.category = 'pass'
- if(item.state == 1) {
- qdata.pm = 1
- }else {
- qdata.pm = 0
- }
- }else if(that.type == 10) {
- status = 10
- qdata.category = 'integral'
- if(item.state == 1) {
- qdata.pm = 1
- }else {
- qdata.pm = 0
- }
- }else if(that.type == 11) {
- status = 11
- qdata.category = 'freeze_points'
- if(item.state == 1) {
- qdata.pm = 1
- }else {
- qdata.pm = 0
- }
- }
- }
-
- spreadCommission(qdata,status).then(({data})=> {
- if(data.length > 0) {
- let arr = []
- data.forEach(item => {
- arr = arr.concat(item.list)
- console.log(arr);
- })
- item.orderList = item.orderList.concat(arr);
- item.page++;
- if (item.limit == data.length) {
- item.loadingType = 'more';
- return;
- } else {
- item.loadingType = 'noMore';
- }
- // uni.hideLoading();
- that.$set(item, 'loaded', true);
- }else {
- item.loadingType = 'noMore'
- }
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .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: #000;
- font-weight: bold;
-
- &:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 44px;
- height: 0;
- border-bottom: 2px solid #FF4C4C;
- }
- }
- }
- }
- .swiper-box {
- .order-item {
- padding: 20rpx 30rpx;
- line-height: 1.5;
-
- .title-box {
- .title {
- font-size: $font-lg;
- color: $font-color-base;
- }
-
- .time {
- font-size: $font-base;
- color: $font-color-light;
- }
- }
-
- .money {
- color: rgba(239, 58, 85, 1);
- font-size: $font-lg;
- }
- }
- }
- .list-scroll-content {
- background-color: #ffffff;
- height: 100%;
- }
- </style>
|