| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <template>
- <view class="rbox">
- <u-list @scrolltolower="scrolltolower" height="100%">
- <u-list-item v-for="(item, index) in list" :key="item.id">
- <view class="rbox-item">
- <view class="rbox-item-top adfac">
- <view class="rbox-item-top-type">{{typeCfg[item.type]||'个人版'}}</view>
- <view class="rbox-item-top-title">{{item.reportName||''}}</view>
- </view>
- <view class="rbox-item-p adf">
- <view class="rbox-item-p-left">团队名称:</view>
- <view class="rbox-item-p-right">{{item.teamName||''}}</view>
- </view>
- <view class="rbox-item-p adf">
- <view class="rbox-item-p-left">发送教练:</view>
- <view class="rbox-item-p-right">{{item.coachName||''}}</view>
- </view>
- <view class="rbox-item-p adf">
- <view class="rbox-item-p-left">报告时间:</view>
- <view class="rbox-item-p-right">{{item.createDate||''}}</view>
- </view>
- <image class="rbox-item-ask" :src="imgBase+'report_ask.png'" @click="askReport(item)"></image>
- <view class="rbox-item-bottom adfacjb">
- <view class="gbox-item-bottom-left adfac"></view>
- <view class="rbox-item-bottom-right" @click="reviewReport(item)">查看报告</view>
- </view>
- </view>
- </u-list-item>
- </u-list>
- </view>
- </template>
- <script>
- import { getPlatformInfo } from '@/utils/platform.js';
- export default {
- props:{
- list:{
- typeof:Array,
- default:[]
- }
- },
- data(){
- return {
- typeCfg:{
- 1:'个人版',
- 2:'团队版',
- 0:'团队PRO版'
- },
- }
- },
- methods:{
- scrolltolower(){
- this.$emit('scrolltolower')
- },
- reviewReport(item){
- // uni.navigateTo({
- // url:`/pagesHome/reportDetail?pdfUrl=${item.fileUrl}&reportId=${item.reportId}&fileName=${this.typeCfg[item.type]||'个人版'}-${item.reportName}`
- // })
- // wx.downloadFile({
- // url:item.fileUrl,
- // success: function (res) {
- // const filePath = res.tempFilePath
- // wx.openDocument({
- // filePath: filePath
- // })
- // }
- // })
-
- const { isPC, isMobile, platform } = getPlatformInfo();
- if (isPC) {
- this.$showModal('请在手机端该微信小程序中查看报告')
- } else if (isMobile||platform==='devtools') {
- if(!item.fileUrl) return this.$showToast('报告pdf为空,请稍后再试。')
- uni.navigateTo({
- url:'/pages/webView?src='+item.fileUrl
- })
- }
- },
- askReport(item){
- uni.navigateTo({
- url:`/pages/reportAsk?pdfUrl=${item.fileUrl}&fileName=${this.typeCfg[item.type]||'个人版'}-${item.reportName}`
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .rbox{
- height: 100%;
- &-item{
- margin-top: 20rpx;
- background: #FFFFFF;
- border-radius: 24rpx;
- padding: 40rpx 24rpx 10rpx;
- position: relative;
- &-top{
- &-type{
- padding: 2rpx 13rpx;
- background: #FFF7DC;
- border-radius: 6rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #BA9B31;
- line-height: 33rpx;
- }
- &-title{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #002846;
- line-height: 32rpx;
- text-indent: 17rpx;
- }
- }
- &-p{
- margin-top: 36rpx;
- &>view{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #667E90;
- line-height: 24rpx;
- }
- &-left{
- width: 134rpx;
- }
- &-right{
- width: calc(100% - 134rpx);
- }
- }
- &-ask{
- width: 64rpx;
- height: 64rpx;
- position: absolute;
- right: 24rpx;
- top: 180rpx;
- }
- &-bottom{
- margin-top: 30rpx;
- border-top: 1rpx solid #EFEFEF;
- padding-top: 18rpx;
- &-left{
- &>view{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #667E90;
- line-height: 24rpx;
- }
- }
- &-right{
- padding: 17rpx 20rpx;
- background: linear-gradient( 90deg, #33A7A7 0%, #4DB2B2 100%);
- border-radius: 30rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 24rpx;
- color: #FFFFFF;
- line-height: 26rpx;
- letter-spacing: 2rpx;
- }
- }
- &-btn{
- padding: 17rpx 20rpx;
- background: linear-gradient( 90deg, #33A7A7 0%, #4DB2B2 100%);
- border-radius: 30rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 24rpx;
- color: #FFFFFF;
- line-height: 26rpx;
- letter-spacing: 2rpx;
- position: absolute;
- bottom: 40rpx;
- right: 24rpx;
- &.ask{
- right: 180rpx;
- }
- }
- }
- }
- </style>
|