| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | <template>	<view class="default_page adffcac" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">		<cus-header title='提交问卷' bgColor="transparent"></cus-header>		<image :src="imgBase+'pay_success.png'"></image>		<view class="title">提交成功</view>		<view class="tip">感谢您的积极参与,待所有团队成员完成作答后,将由教练统一生成,报告生成后,系统会发送给您。</view>		<view class="btn" @click="returnHome">返回首页</view>	</view></template><script>	export default {		data(){			return {							}		},		methods:{			returnHome(){				uni.reLaunch({					url:'/pages/home'				})			},		}	}</script><style scoped lang="scss">	.default_page{		padding: 0 120rpx;				image{			width: 226rpx;			height: 142rpx;			margin-top: 196rpx;		}				.title{			font-family: PingFangSC, PingFang SC;			font-weight: 600;			font-size: 40rpx;			color: #002846;			line-height: 51rpx;			margin-top: 42rpx;		}		.tip{			font-family: PingFangSC, PingFang SC;			font-weight: 400;			font-size: 28rpx;			color: #95A5B1;			line-height: 51rpx;			margin-top: 8rpx;			text-align: center;		}				.btn{			width: 100%;			height: 88rpx;			border: 1rpx solid #33A7A7;			background: linear-gradient( 90deg, #33A7A7 0%, #64BBBB 100%);;			border-radius: 44rpx;			font-family: PingFang-SC, PingFang-SC;			font-weight: bold;			font-size: 32rpx;			color: #FFFFFF;			line-height: 88rpx;			text-align: center;			letter-spacing: 2rpx;			margin-top: 120rpx;		}	}</style>
 |