<template>
|
<view>
|
|
<!--切换-->
|
<view class="top-tabbar">
|
<view :class="state_active == item.value? 'tab-item active' : 'tab-item'" @click="stateFunc(item.value)"
|
v-for="(item,index) in tableList" :key="index">{{item.text}}</view>
|
</view>
|
|
<!--列表-->
|
<scroll-view scroll-y="true" class="scroll-Y" :style="'height:' + scrollviewHigh + 'px;'" lower-threshold="50"
|
@scrolltoupper="scrolltoupperFunc" @scrolltolower="scrolltolowerFunc">
|
<view class="p-0-30 bg-white mt20">
|
<view class="d-b-c border-b p-20-0" v-for="(item,index) in tableData" :key="index">
|
<view class="d-s-s f-w d-c flex-1">
|
<text class="f28 mb16">提现</text>
|
<text class="gray9 f22">手续费:<text class="orange">{{ item.fee_money||0 }}元</text>; 实际到账:<text class="orange">{{ item.real_money || item.money }}元</text></text>
|
<text class="gray9 f22">{{item.create_time}}</text>
|
</view>
|
<view>
|
<view class="tr" :class="item.apply_status.text=='审核通过'?'green':'gray9'">
|
{{ item.apply_status.text }}
|
</view>
|
<view class="red ml20">¥{{ item.money }}</view>
|
</view>
|
</view>
|
|
<!--<view class="">
|
<view class="bottom-refresh">
|
<view class="d-c-c p30" v-if="tableData.length && no_more">
|
<text class="gray3">亲, 没有更多了</text>
|
</view>
|
<view v-if="loading" class="d-c-c p30">
|
<text class="gray3">加载中...</text>
|
</view>
|
</view>
|
</view>-->
|
<!-- 没有记录 -->
|
<view class="d-c-c p30" v-if="tableData.length==0 && !loading">
|
<text class="iconfont icon-wushuju"></text>
|
<text class="cont">亲,暂无相关记录哦</text>
|
</view>
|
<uni-load-more v-else :loadingType="loadingType"></uni-load-more>
|
</view>
|
</scroll-view>
|
<shopTabBar></shopTabBar>
|
</view>
|
</template>
|
|
<script>
|
import uniLoadMore from "@/components/uni-load-more.vue";
|
export default {
|
components: {
|
uniLoadMore
|
},
|
data() {
|
return {
|
|
/*手机高度*/
|
phoneHeight: 0,
|
/*可滚动视图区域高度*/
|
scrollviewHigh: 0,
|
/*状态选中*/
|
state_active: -1,
|
/*数据列表*/
|
tableData: [],
|
no_more: false,
|
loading: true,
|
/*最后一页码数*/
|
last_page: 0,
|
/*当前页面*/
|
page: 1,
|
/*每页条数*/
|
list_rows: 20,
|
tableList: [],
|
}
|
},
|
computed: {
|
|
/*加载中状态*/
|
loadingType() {
|
if (this.loading) {
|
return 1;
|
} else {
|
if (this.tableData.length != 0 && this.no_more) {
|
return 2;
|
} else {
|
return 0;
|
}
|
}
|
}
|
},
|
mounted() {
|
/*初始化*/
|
this.init();
|
/*获取数据*/
|
this.getData();
|
},
|
methods: {
|
/*初始化*/
|
init() {
|
let self = this;
|
uni.getSystemInfo({
|
success(res) {
|
self.phoneHeight = res.windowHeight;
|
// 计算组件的高度
|
let view = uni.createSelectorQuery().select('.top-tabbar');
|
view.boundingClientRect(data => {
|
let h = self.phoneHeight - data.height;
|
self.scrollviewHigh = h;
|
}).exec();
|
}
|
});
|
},
|
/*获取数据*/
|
getData() {
|
let self = this;
|
let page = self.page;
|
self.loading = true;
|
let list_rows = self.list_rows;
|
self._get('plus.release.cash/lists', {
|
status: self.state_active,
|
page: page || 1,
|
list_rows: list_rows,
|
}, function(data) {
|
self.loading = false;
|
// 导航栏数据
|
self.tableList = [{
|
value: -1,
|
text: '全部',
|
}, {
|
value: 10,
|
text: '审核中',
|
}, {
|
value: 20,
|
text: '审核通过',
|
},
|
{
|
value: 40,
|
text: '已打款',
|
},
|
{
|
value: 30,
|
text: '已驳回',
|
}
|
];
|
self.tableData = self.tableData.concat(data.data.list.data);
|
self.last_page = data.data.list.last_page;
|
if (data.data.list.last_page <= 1) {
|
self.no_more = true;
|
return false;
|
}
|
});
|
},
|
|
/*切换*/
|
stateFunc(e) {
|
let self = this;
|
if(e!=self.state_active){
|
self.tableData = [];
|
self.page = 1;
|
self.state_active = e;
|
self.getData();
|
}
|
},
|
|
/*可滚动视图区域到顶触发*/
|
scrolltoupperFunc() {
|
console.log('滚动视图区域到顶');
|
},
|
|
/*可滚动视图区域到底触发*/
|
scrolltolowerFunc() {
|
let self = this;
|
if (self.page < self.last_page) {
|
self.page++;
|
self.getData();
|
}
|
self.no_more = true;
|
}
|
}
|
}
|
</script>
|
|
<style lang="scss">
|
.tab-item {
|
font-size: 28rpx;
|
}
|
|
.tab-item.active {
|
font-weight: normal;
|
font-size: 28rpx;
|
}
|
|
.tab-item.active::after {
|
width: 57rpx;
|
height: 6rpx;
|
background-color: #ff5649;
|
}
|
</style>
|