123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449 |
- <template>
- <view class="">
- <public-module></public-module>
- <u-sticky h5-nav-height="0">
- <view class="headers dis a-c j-start">
- <u-icon name="arrow-left" color="#333" size="38" @click="back"></u-icon>
- <text style="margin: auto;">{{ title }}</text>
- </view>
- <view class="filterTime dis j-s a-c ">
- <view class=" dis a-c " @click="searchPopup">
- <text>{{pageQuery.startTime && pageQuery.endTime ? pageQuery.startTime + '-' + pageQuery.endTime : '时间筛选' }}</text>
- <text>▼</text>
- </view>
- <view class=" dis a-c " @click="statusFilterShow=true">
- <text>{{ pageQuery.appStatus == '0'?'正常':pageQuery.appStatus == '1'?'已冻结':pageQuery.appStatus == '2'?'已失效':'全部' }}</text>
- <text>▼</text>
- </view>
- </view>
- <uni-collapse ref="collapse">
- <uni-collapse-item v-if="recordType=='1'" :title="collapseTitle" :open="true" :show-arrow="true">
- <view class="content">
- <text class="text">因您的职级在考核期内,未达成考核任务,按照规则,此部分收益将冻结,考核任务达成后即可提现,在规定期间内未达成考核任务,收益将过期。</text>
- </view>
- </uni-collapse-item>
- <uni-collapse-item v-if="recordType=='2'" :title="collapseTitle" :open="true" :show-arrow="true">
- <view class="content">
- <text class="text">因您的职级处于冻结状态,且在该职级考核期区间内未完成解锁条件和申请解锁,按照规则,此部分收益已过期,无法再进行领取。</text>
- </view>
- </uni-collapse-item>
- </uni-collapse>
- </u-sticky>
- <view class="content" v-if="recordType == '1'">
- <view class="item" v-for="(item, index) in transferRecords" @click="toReacors(item.id)">
- <view class="info">
- <view class="name">工作室</view>
- <view class="time">{{ item.startTime }}</view>
- </view>
- <view class="amount">{{ item.amount }}</view>
- </view>
- </view>
- <view class="content" v-if="recordType == '2'">
- <view class="cold" v-for="(item, index) in transferRecords" @click="toReacors(item.id)">
- <view class="rows">
- <view class="left name">工作室</view>
- <view class="right amount">{{ item.amount }}</view>
- </view>
- <view class="rows">
- <view class="left">考核时间</view>
- <view class="right" style="white-space: pre-line;">
- 起{{ item.startTime }}
- 止{{ item.endTime }}
- </view>
- </view>
- <view class="rows">
- <view class="left">冻结时间</view>
- <view class="right">{{ item.freezeTime }}</view>
- </view>
- <view class="rows">
- <view class="left">过期时间</view>
- <view class="right">{{ item.expireTime }}</view>
- </view>
- </view>
- </view>
- <u-loadmore v-if="userlist.length!=0" :status="status" />
- <!-- 筛选组件 -->
- <uni-popup :show="statusFilterShow" @close='statusFilterShow=false' headerTitle="筛选状态"
- :statusList="quickOptions" contentType="status" @statusConfirm="statusFilterConfirm">
-
- </uni-popup>
- <my-date-picker ref="datePicker" @confirmPickDate="confirmPickDate" />
- </view>
- </template>
- <script>
- import myDatePicker from '../components/todaydate-picker.vue';
- export default {
- components: {
- myDatePicker
- },
- data() {
- return {
- title: '过期记录',
- referrerInfo: {}, //个人信息
- userlist: [],
- pageQuery: {
- id: "",
- endTime: "",
- startTime: "",
- appStatus: '',
- pageNum: 1,
- pageSize: 10,
- },
- status: 'loadmore',
- totalPages: 0,
- parentStatus: "",
- transferRecords: [
- {
- grade: '1',
- startTime: '2025-09-06',
- amount: 10,
- endTime: '2025-09-07',
- freezeTime: '2025-09-09',
- expireTime: '2025-09-08'
- },
- {
- grade: '1',
- startTime: '2025-09-06',
- amount: 10,
- endTime: '2025-09-07',
- freezeTime: '2025-09-09',
- expireTime: '2025-09-08'
- },
- {
- grade: '1',
- startTime: '2025-09-06',
- amount: 10,
- endTime: '2025-09-07',
- freezeTime: '2025-09-09',
- expireTime: '2025-09-08'
- }
- ],
- recordType: '',
- collapseTitle: '',
- statusFilterShow: false,
- quickOptions: [{
- label: "全部",
- value: null,
- },
- {
- label: "正常",
- value: "0",
- },
- {
- label: "已冻结",
- value: "1",
- },
- {
- label: "已失效",
- value: "2",
- }
- ],
- }
- },
- onReachBottom() {
- if (this.pageQuery.pageNum >= this.totalPages) return;
- this.status = 'loading';
- this.pageQuery.pageNum = ++this.pageQuery.pageNum;
- setTimeout(async () => {
- let res = await this.$http.post('/newAppPartner/selectByIdList', this.pageQuery);
- if (res.code == '200') {
- this.userlist = [...this.userlist, ...res.data.list.records];
- }
- if (this.pageQuery.pageNum >= this.totalPages) this.status = 'nomore';
- else this.status = 'loading';
- }, 1000)
- },
- onLoad(options) {
- this.pageQuery.id = options.id;
- this.recordType = this.$route.query.type
- this.title = this.$route.query.type == '1'?'过期记录':this.$route.query.type == '2'?'冻结记录':''
- this.collapseTitle = this.$route.query.type == '1'?`共有${this.transferRecords.length}过期记录`:this.$route.query.type == '2'?`共有${this.transferRecords.length}冻结记录`:''
- this.querydata();
- },
- methods: {
- back() {
- uni.navigateBack({
- delta: 1, // 返回的页面数,如果是1表示返回上一页
- success: function() {}
- });
- },
- async querydata() {
- let res = await this.$http.post('/newAppPartner/selectByIdList', this.pageQuery);
- if (res.code == '200') {
- this.referrerInfo = res.data.referrer;
- this.userlist = res.data.list.records;
- this.parentStatus = res.data.parentStatus;
- this.totalPages = res.data.list.totalPages;
- }
- },
- //激活时间选择组件
- searchPopup() {
- this.$refs.datePicker.open()
- },
- //日期选择回调
- confirmPickDate(startdate, enddate) {
- this.pageQuery.startTime = startdate;
- this.pageQuery.endTime = enddate;
- },
- statusFilterConfirm(item) {
- this.pageQuery.appStatus = item.value;
- this.querydata();
- this.statusFilterShow = false;
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .headers {
- width: 100%;
- z-index: 999999;
- padding: 30rpx;
- padding-top: 50px;
- background: linear-gradient(180deg, #D1EFFE 0%, #FFFFFF 100%);
- border-bottom: 1rpx solid #f2f2f2;
- text {
- font-size: 36rpx;
- font-weight: bold;
- color: #000;
- }
- .right {
- position: absolute;
- right: 30rpx;
-
- image {
- width: 28rpx;
- height: 28rpx;
- margin-right: 4rpx;
- }
-
- text {
- font-weight: 400;
- color: #000;
- font-size: 24rpx;
- }
- }
- }
- //头部背景
- .homeBackground {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 999;
- width: 100%;
- height: 176rpx;
- background: linear-gradient(180deg, #D1EFFE 0%, #FFFFFF 100%);
- border-bottom: 1rpx solid #f2f2f2;
- }
- //业绩
- .performance {
- width: 100%;
- height: 60rpx;
- background: #EBF4FF;
- border-radius: 0rpx 0rpx 0rpx 0rpx;
- font-size: 30rpx;
- color: #2B67EF;
- }
- //时间筛选
- .filterTime {
- width: 100%;
- background: #fff;
- border-radius: 0rpx 0rpx 0rpx 0rpx;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
-
- text:first-child {
- font-size: 26rpx;
- color: #333;
- }
-
- text:last-child {
- font-size: 19rpx;
- color: #666;
- margin-left: 4rpx;
- }
- }
- .intro {
- position: fixed;
- top: 176rpx;
- left: 0;
- z-index: 999;
- width: 100%;
- padding: 25rpx 30rpx;
- box-sizing: border-box;
- background-color: #FFFFFF;
- image {
- width: 128rpx;
- height: 128rpx;
- }
- text {
- font-size: 28rpx;
- color: #666;
- }
- .title {
- font-size: 32rpx;
- color: #333;
- font-weight: bold;
- }
- .level {
- padding: 0 10rpx;
- box-sizing: border-box;
- font-size: 22rpx;
- color: #2D6DFF;
- border: 1rpx solid #2D6DFF;
- border-radius: 4rpx;
- margin-left: 20rpx;
- background: rgba(45, 109, 255, 0.1);
- }
- }
- //列表数据
- .card {
- position: relative;
- background: #FFFFFF;
- border-radius: 10rpx;
- background-image: url("/static/card.png");
- background-size: 100% 100%;
- border-top: 1px solid;
- border-image: linear-gradient(270deg, rgba(45, 109, 255, 0), rgba(45, 109, 255, 1), rgba(45, 109, 255, 0)) 1 1;
- padding: 20rpx 30rpx 30rpx;
- .card-title {
- .avatar {
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- image {
- width: 100%;
- height: 100%;
- }
- }
- >text {
- font-size: 24rpx;
- color: #666;
- }
- .name {
- font-size: 30rpx;
- color: #333;
- font-weight: bold;
- }
- }
- .card-data {
- .view {
- width: 33.33%;
- text:first-child {
- font-size: 30rpx;
- color: #333;
- font-weight: bold;
- }
- text:last-child {
- font-size: 24rpx;
- color: #999;
- }
- }
- .view:nth-child(2) {
- border-left: 1rpx solid #eee;
- border-right: 1rpx solid #eee;
- }
- }
- }
- .content {
- margin: 20rpx 30rpx;
- box-sizing: border-box;
- background-color: #FFFFFF;
- border-radius: 10rpx 10rpx 10rpx 10rpx;
- padding: 30rpx;
- box-sizing: border-box;
- .item{
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding:24rpx 0 30rpx;
- border-bottom: 1rpx solid #eee;
- .info{
- .name{
- font-size: 30rpx;
- color: #333;
- }
- .time{
- font-size: 20rpx;
- color: #999;
- }
- }
- .amount{
- font-size: 30rpx;
- color: #333;
- font-weight: 500;
- }
- }
- .cold{
- padding: 30rpx 0;
- border-bottom: 1rpx solid #eee;
- .rows{
- display: flex;
- justify-content: space-between;
- .amount{
- font-size: 30rpx;
- color: #333;
- }
- .left{
- font-size: 28rpx;
- color: #999;
- }
- .name{
- font-size: 30rpx;
- color: #333;
- }
- .right{
- font-size: 28rpx;
- color: #333;
- }
- }
- }
- }
- ::v-deep .uni-collapse-cell__title{
- background-color: #EBF4FF;
- height: 60rpx;
- padding: 0 30rpx;
- color: #2B67EF;
- }
- ::v-deep .uni-collapse-cell--hide{
- height: 60rpx;
- }
- ::v-deep .uni-collapse-cell__wrapper .content{
- margin: 0;
- background-color: #EBF4FF;
- color: #2B67EF;
- padding: 10rpx 30rpx;
- }
- ::v-deep .uni-collapse-cell__title::after {
- content: ''; /* 确保内容不为空 */
- border-width: 4rpx 4rpx 0 0; /* 根据实际需要调整边框宽度 */
- border-style: solid;
- border-color: #2B67EF; /* 箭头颜色 */
- width: 16rpx; /* 箭头宽度 */
- height: 16rpx; /* 箭头高度 */
- transform: rotate(134deg); /* 旋转角度 */
- display: inline-block; /* 确保以块级元素显示 */
- margin-left: 10px; /* 根据需要调整边距 */
- }
- </style>
|