| | |
| | | <view class="" v-if="imcomeInfo&&imcomeInfo.length>0"> |
| | | <view class="money_bag"> |
| | | <up-cell :value="`${item.yiTiXianJine} 元`" :title="item.zhiChuShouRuName" :label="item.remark" |
| | | v-for="(item,index) in imcomeInfo"></up-cell> |
| | | v-for="(item,index) in imcomeInfo" :key='item.id'></up-cell> |
| | | </view> |
| | | <up-loadmore :status="loadStatus" /> |
| | | </view> |
| | |
| | | pageSize: this.pageSize |
| | | } |
| | | this.$api.PostMyTiXianDetailListPage(obj).then(res => { |
| | | this.imcomeInfo = res.data.items |
| | | if (res.code == 1) { |
| | | if (this.pageIndex == 1) { |
| | | this.imcomeInfo = res.data.items |
| | | } else { |
| | | this.imcomeInfo.concat(...res.data.items) |
| | | this.imcomeInfo = this.imcomeInfo.concat(...res.data.items) |
| | | } |
| | | console.log(this.imcomeInfo, this.imcomeInfo.length, 'this.viewList'); |
| | | // totalPages.value = res.data.totalCount |
| | | // 根据count数量判断是否还有数据 |
| | | if (res.data.totalCount > this.imcomeInfo.length) { |