sadjv3/anmo-user/my/commission/index.vue

423 lines
12 KiB
Vue
Raw Normal View History

2024-06-04 10:03:14 +08:00
<template>
<view>
<view class="ciycle">
<view id="IntegralStatisticsTop" ref="IntegralStatisticsTop">
<view class="innerTop">
<view class="innerTopLeft">
<view v-for="item in rangeSelect" :key="item.id"
:class="activeRange == item.id ? 'activeTab' : 'defaultTab'" @click="selectedRange(item)">
{{item.title}}
</view>
</view>
<view class="innerTopRightImport">
<view class="innerTopRight" @tap="showAndHiddenDatePicker">查看更多
</view>
</view>
</view>
<view class="innerBottom">
<view class="innerBottomOfTop">
<view class="innerTimer">
{{this.homePageDataNum.fundRange}}
</view>
</view>
<view class="middleTop">
<view class="IntegralImport">
<view class="totalIntegralNumber">
{{this.homePageDataNum.totalRevenue ? this.homePageDataNum.totalRevenue : 0 }}
</view>
<view class="totalIntegral">
本期收益()
</view>
</view>
<view class="line"></view>
<view class="innerBottomOfBottom">
<view class="IntegralClassify">
<view class="">
{{this.homePageDataNum.projectBenefits ? this.homePageDataNum.projectBenefits : 0 }}
</view>
<view class="IntegralClassifyInnerBottom">
项目收益
</view>
</view>
<view class="IntegralClassify">
<view class="">
{{this.homePageDataNum.vehicleFareAmount ? this.homePageDataNum.vehicleFareAmount : 0 }}
</view>
<view class="IntegralClassifyInnerBottom">
车费收益
</view>
</view>
<view class="IntegralClassify">
<view class="">
{{this.homePageDataNum.valueStorageDeduction ? this.homePageDataNum.valueStorageDeduction : 0 }}
</view>
<view class="IntegralClassifyInnerBottom">
储值扣款
</view>
</view>
<view class="IntegralClassify">
<view class="">
{{this.homePageDataNum.channelDeduction ? this.homePageDataNum.channelDeduction : 0 }}
</view>
<view class="IntegralClassifyInnerBottom">
渠道扣款
</view>
</view>
</view>
</view>
</view>
<uni-datetime-picker type="date" ref="dataPicker" :clear-icon="true" return-type="string"
@change="confirmSelectedDate" v-model="selectedDate" @maskClick="maskClick" />
</view>
<view id="IntegralStatisticsBottom" :style="{height:domNeedHeight == 0? 420 + 'px' : domNeedHeight + 'px'}">
<view class="optionsDetail">
<!-- 父元素列表 -->
<cc-nodata title="暂无数据" v-if="noDataScrollStatus"
:style="{width:100+'%',height:domNeedHeight == 0? 420 + 'px' : domNeedHeight + 'px'}"></cc-nodata>
<view v-if="!noDataScrollStatus" v-for="(item,index) in commissionDetail" :key="index"
class="optionsDetailImport">
<view class="storedIntegralTop">
<view class="storedIntegralTopOfRight">
<view class="">订单收益</view>
<view class="">{{item.sumArtificerMoney}}</view>
</view>
</view>
<view class="storedIntegralMiddle">
<view class="">服务时间:{{item.serveTime}}</view>
<view class="storedIntegralMiddleofRight">下单时间:{{item.payTime}}</view>
</view>
<view class="viewOrdersInfo">
<view class="storedIntegralBottom">订单号: {{item.ordersNo}}</view>
<view class="storedIntegralBottom" @tap="jumpOrdersDetail(item.ordersId)">查看明细
</view>
</view>
<!-- <u-gap style="width:97%" height="1" bg-color="#ededed"></u-gap> -->
</view>
<uniLoadMore color="#007AFF" :iconType="iconType" :status="loadingStatus" :marginBottom="20"
:marginTop="20" v-if="isShowLoadMore" />
</view>
</view>
</view>
</view>
</template>
<script>
import * as websocketUtils from 'utils/websocketUtils.js';
import uniLoadMore from "@/uview-ui/components/u-loadmore/u-loadmore.vue";
import navBar from "@/components/navBar/navBar.vue";
import {
watch
} from "vue";
export default {
components: {
uniLoadMore,
navBar,
},
onUnload() {
this.selectedDate = null;
this.activeRange = null;
this.loadingStatus = null;
this.currentPage = null;
this.commissionDetail = null;
this.intervalDatesUltimately = null;
this.pageSize = null;
this.recordLastTimeRange = null;
this.noDataScrollStatus = null;
this.noDataMenuStatus = null;
this.isIntegralHasData = null;
this.iconType = null;
this.rangeSelect = null;
this.bottomOptionsInfo = null;
},
onLaunch() {},
onShow() {},
onLoad() {
this.selectedDate = this.getCurrentTimeStamp();
this.artificerId = uni.getStorageSync("artificerId");
this.getHomePageNum({
artificerId: this.artificerId,
fundData: this.selectedDate,
fundType: 1,
});
//获取下方积分明细(列表)
this.getCommissionDataList({
artificerId: this.artificerId,
fundData: this.selectedDate,
fundType: 1,
limit: this.pageSize,
page: this.currentPage,
});
},
onReady() {
//自适应改变列表高度
this.selfAdaptionChangeElemtHeight();
},
//上拉触底
onReachBottom(e) {
this.currentPage += 1;
this.isScroll = true;
if (this.loadingStatus == "nomore") {
return;
} else {
this.getCommissionDataList({
artificerId: this.artificerId,
fundData: this.selectedDate,
fundType: this.activeRange,
limit: this.pageSize,
page: this.currentPage,
}, true);
}
},
//下拉刷新
onPullDownRefresh(e) {
this.commissionDetail = [];
this.currentPage = 1;
this.selectedDate = this.getCurrentTimeStamp();
this.getHomePageNum({
artificerId: this.artificerId,
fundData: this.selectedDate,
fundType: this.activeRange,
});
this.getCommissionDataList({
artificerId: this.artificerId,
fundData: this.selectedDate,
fundType: this.activeRange,
limit: this.pageSize,
page: this.currentPage,
});
},
watch: {
// 监听数据源改变下拉刷新的状态
commissionDetail(newData, oldData) {
if (newData.length >= 1) {
uni.stopPullDownRefresh();
}
},
},
data() {
return {
domNeedHeight: 0, //元素的所需高度
selectedDate: this.currentDate,
statusBarHeight: 20,
activeRange: 1,
loadingStatus: "loadmore",
currentPage: 1,
pageSize: 6,
intervalDatesUltimately: null,
recordLastTimeRange: null,
noDataScrollStatus: false,
noDataMenuStatus: false,
isIntegralHasData: null,
iconType: "circle",
title: "分成明细",
isShowLoadMore: null,
backgroundcolor: "linear-gradient(to bottom, #294856, #1a615b)",
artificerld: null,
parentData: {},
homePageDataNum: {
totalRevenue: null,
projectBenefits: null,
vehicleFareAmount: null,
channelDeduction: null,
valueStorageDeduction: null,
fundRange: null,
},
rangeSelect: [{
id: 1,
title: "本期",
}, {
id: 2,
title: "上期",
}, {
id: 3,
title: "本月",
}, {
id: 4,
title: "上月",
}],
commissionDetail: [],
}
},
methods: {
//自适应改变列表高度
selfAdaptionChangeElemtHeight() {
let _this = this;
try {
uni.getSystemInfo({
success: res => {
if (res && res.windowHeight) {
let query = uni.createSelectorQuery().in(this);
query
.select(".optionsDetail")
.boundingClientRect((data) => {
_this.domNeedHeight = res.windowHeight - data.top - 20;
})
.exec();
}
}
});
} catch (e) {
//TODO handle the exception
}
},
//获取下方积分明细(列表)
getCommissionDataList(params, isScroll) {
this.loadingStatus = "loading";
let {
artificerId,
fundData,
fundType,
limit,
page,
} = params;
this.$Request.postXZX("/app/dividedIntoDetails/selectDividedIntoDetails", params).then((
res) => {
//日期在返回数据userMoneyDetailsList.records的外面,需要单独赋值
this.fundTopDate = res.data?.startFundData + "---" + res.data?.endFundData;
if (res && res.data && res.data.records.length > 0) {
//有数据时
let obj = {};
res.data.records.forEach((item) => {
obj = {
sumArtificerMoney: item.sumArtificerMoney,
serveTime: item.serveTime,
payTime: item.payTime,
ordersNo: item.ordersNo,
ordersId: item.ordersId,
}
this.commissionDetail.push(obj);
})
this.noDataScrollStatus = false;
this.isShowLoadMore = true;
if (this.commissionDetail.length < res.data.total) {
this.loadingStatus = "loadmore";
} else if (this.commissionDetail.length > res.data.total) {
this.loadingStatus = "nomore";
} else {
this.loadingStatus = "nomore";
}
} else {
//无数据时
if (!isScroll) {
//如果isScroll为null时说明不在滚动
this.noDataScrollStatus = true;
this.isShowLoadMore = false;
} else {
this.noDataScrollStatus = false;
}
this.loadingStatus = "nomore";
// this.noDataScrollStatus = true;
}
uni.stopPullDownRefresh();
})
},
//查询分成明细各个数量
getHomePageNum(params) {
let {
artificerId,
fundData,
fundType,
} = params;
this.$Request.postXZX("/app/dividedIntoDetails/selectDividedIntoDetail", params).then((res) => {
if (res && res.data) {
this.homePageDataNum.totalRevenue = res.data?.totalRevenue;
this.homePageDataNum.projectBenefits = res.data?.projectBenefits;
this.homePageDataNum.vehicleFareAmount = res.data?.vehicleFareAmount;
this.homePageDataNum.channelDeduction = res.data?.channelDeduction;
this.homePageDataNum.valueStorageDeduction = res.data?.valueStorageDeduction;
this.homePageDataNum.fundRange = res.data?.startFundData + "---" + res.data
?.endFundData;
}
})
uni.stopPullDownRefresh();
},
//异步展开日期选择Picker
showAndHiddenDatePicker() {
this.$refs.dataPicker.show();
},
//日期选择确认事件
confirmSelectedDate(e) {
this.selectedDate = e;
this.commissionDetail = [];
this.getHomePageNum(this.selectedDate);
this.getCommissionDataList({
artificerId: this.artificerId,
fundData: this.selectedDate,
fundType: this.activeRange,
limit: this.pageSize,
page: this.currentPage,
});
},
//点击日期选择框遮罩层事件
maskClick() {},
//选择区间类型(本期/上期/本月/上月)
selectedRange(item) {
if (item && item.id) {
if (item.id == this.activeRange) return;
this.activeRange = item.id;
this.currentPage = 1;
this.isScroll = false;
this.commissionDetail = [];
this.currentIncome = "";
this.selectedDate = this.getCurrentTimeStamp();
this.getHomePageNum({
artificerId: this.artificerId,
fundData: this.selectedDate,
fundType: this.activeRange,
});
this.getCommissionDataList({
artificerId: this.artificerId,
fundData: this.selectedDate,
fundType: this.activeRange,
limit: this.pageSize,
page: this.currentPage,
});
}
},
//获取当前时间及转换方法
getCurrentTimeStamp() {
let realDateTimeStamp = new Date();
let year = realDateTimeStamp.getFullYear();
let month = realDateTimeStamp.getMonth() + 1;
let day = realDateTimeStamp.getDate();
let currentDate = year + '-' + (month < 10 ? '0' + month : month) + '-' + (day < 10 ? '0' + day : day);
return currentDate;
},
//跳转订单分成明细页面
jumpOrdersDetail(ordersId) {
if (this.commissionDetail.length <= 0) {
uni.navigateTo({
url: "/my/orderRevenueDetails/index?ordersId=" + ordersId,
})
uni.showToast({
title: '接口异常,请联系管理员',
duration: 2000,
})
return;
};
this.parentData = this.commissionDetail.filter((item) => item.ordersId == ordersId);
let parentData = this.parentData[0];
uni.navigateTo({
url: "/my/orderRevenueDetails/index?ordersId=" + ordersId,
success(res) {
console.log(res);
res.eventChannel.emit('parentData', parentData);
},
})
}
}
}
</script>
<style scoped>
@import "./index.css";
</style>
<style>
page {
background-color: #f1f1f1;
height: 100%;
}
</style>