| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | <template>	<view class="page adffcacjc" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">		<cus-header title='问卷结果' backUrl="/pages/questionnaire"></cus-header>		<div class="top adffcacjc">			<image src="@/static/result.png"></image>			<div class="text">您的问卷已经提交,感谢您的参与<br>报告将在问卷完成后<br>由教练统一发送,请耐心等待!</div>		</div>		<div class="btns adfacjb">			<div class="pre" @tap="toBack">返回</div>			<div class="pre ck" @tap="reviewRepoer">查看报告</div>		</div>	</view></template><script>	export default {		data(){			return {							}		},		methods:{			toBack(){				uni.redirectTo({					url:'/pages/questionnaire'				})			},			reviewRepoer(){				uni.navigateTo({					url:'/pages/report'				})			},		}	}</script><style scoped lang="less">	.page{		background: #FFFFFF;		box-sizing: border-box;				.top{			image{				width: 214rpx;				height: 214rpx;			}			.text{				font-family: PingFangSC, PingFang SC;				font-weight: 400;				font-size: 32rpx;				color: #393939;				line-height: 51rpx;				text-align: center;				margin-top: 30rpx;			}		}				.btns{			width: calc(100% - 80rpx);			margin: 306rpx 40rpx 0;			.pre{				width: calc(50% - 15rpx);				height: 88rpx;				border: 1rpx solid #761E6A;				border-radius: 20rpx;				font-family: PingFangSC, PingFang SC;				font-weight: 400;				font-size: 32rpx;				color: #761E6A;				line-height: 88rpx;				text-align: center;				letter-spacing: 2rpx;				&.ck{					background: #833478;					color: #FFFFFF;				}			}		}	}</style>
 |