| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 | <template>	<view class="page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">		<cus-header title='我的报告'></cus-header>		<!-- <div class="tabs adf">			<div class="t_pre" :class="{'active':tidx===2,'inactive':tidx!==2}" @tap="changeTab(2)">个人报告</div>			<div class="t_pre" :class="{'active':tidx===1,'inactive':tidx!==1}" @tap="changeTab(1)">团队报告</div>		</div> -->		<template v-if="list.length">			<div class="list">				<div class="l_item" v-for="(item,index) in list" :key="index">					<div class="li_title">{{item.reportName||''}}</div>					<div class="li_pre">报告时间:<span>{{item.createDate||''}}</span></div>					<div class="li_pre" v-if="item.type==1">作答人数:<span>{{item.finishNum||0}}/{{item.answerNum||0}}</span></div>					<!-- <div class="li_pre">项目名称:<span>{{item.programName||''}}</span></div> -->					<div class="li_pre">团队名称:<span>{{item.teamName||''}}</span></div>					<div class="li_jd adfacjb" v-if="item.type==1">						<div class="lj_l">							<div class="ljl_box" :style="{'width':((item.finishNum||0)/(item.answerNum||0)*100)+'%'}"></div>						</div>						<div class="lj_r">进度<span>{{item.finishNum||0}}/{{item.answerNum||0}}</span></div>					</div>					<div class="li_view" @tap="viewReport(item)">查看</div>				</div>			</div>		</template>		<template v-else>			<page-empty :height="'calc(100vh - 200px)'"></page-empty>		</template>	</view></template><script>	import pageEmpty from '@/components/pageEmpty/index.vue'	export default {		components:{ pageEmpty },		data(){			return {				tidx:1,				list:[]			}		},		onLoad() {			this.getReportList();		},		methods:{			changeTab(idx){				this.tidx = idx;				this.getReportList();			},			getReportList(){				this.$api.get('/core/report/member/personalReportList').then(res=>{					if(res.data.code!==0) return this.$showToast(res.data.msg)					this.list = res.data.data;				})			},			viewReport(item){				if(!item.fileUrl) return this.$showToast('报告pdf为空,请联系教练。')				uni.navigateTo({					url:`/pages/reportDetail?pdfUrl=${item.fileUrl}&reportId=${item.reportId}&fileName=${item.programName}-${item.reportName}`				})			}		}	}</script><style scoped lang="less">	.page{		background: #F7F7F7;		padding-bottom: 40rpx;		box-sizing: border-box;				.tabs{			width: 100%;			height: 90rpx;			background: #FFFFFF;			.t_pre{				width: 50%;				height: 90rpx;				font-family: PingFang-SC, PingFang-SC;				font-weight: bold;				font-size: 32rpx;				color: #666666;				line-height: 90rpx;				text-align: center;				position: relative;				&.active{					color: #33A7A7;					&::after{						content: '';						width: 148rpx;						height: 6rpx;						background: #33A7A7;						border-radius: 9rpx;						position: absolute;						left: 50%;						margin-left: -74rpx;						bottom: 0;					}				}				&.inactive{					color: #666666 !important;					&::after{						content: '';						width: 148rpx;						height: 6rpx;						background: #FFFFFF !important;						border-radius: 9rpx;						position: absolute;						left: 50%;						margin-left: -74rpx;						bottom: 0;					}				}			}		}			.list{			padding: 0 24rpx;			overflow: hidden;			.l_item{				margin-top: 20rpx;				background: #FFFFFF;				border-radius: 16rpx;				padding: 40rpx 24rpx;				position: relative;				.li_title{					width: calc(100% - 100rpx);					font-family: PingFang-SC, PingFang-SC;					font-weight: bold;					font-size: 30rpx;					color: #252525;					line-height: 30rpx;					overflow: hidden;					text-overflow: ellipsis;					white-space: nowrap;				}				.li_pre{					margin-top: 40rpx;					font-family: PingFangSC, PingFang SC;					font-weight: 400;					font-size: 26rpx;					color: #86909C;					line-height: 26rpx;					overflow: hidden;					text-overflow: ellipsis;					white-space: nowrap;					span{						color: #1D2129;					}				}				.li_jd{					margin-top: 27rpx;					.lj_l{						width: calc(100% - 181rpx);						height: 10rpx;						background: #EFEFEF;						border-radius: 5rpx;						position: relative;						.ljl_box{							height: 100%;							background: #FFD750;							border-radius: 5rpx;							position: absolute;							left: 0;							top: 0;						}					}					.lj_r{						font-family: PingFangSC, PingFang SC;						font-weight: 400;						font-size: 24rpx;						color: #A6A6A6;						line-height: 24rpx;						span{							color: #1D2129;							margin-left: 8rpx;						}					}				}				.li_view{					width: 88rpx;					height: 54rpx;					background: #833478;					border-radius: 24rpx;					font-family: PingFang-SC, PingFang-SC;					font-weight: bold;					font-size: 24rpx;					color: #FFFFFF;					line-height: 54rpx;					text-align: center;					position: absolute;					top: 40rpx;					right: 24rpx;				}			}		}	}</style>
 |