| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 | 
							- <template>
 
- 	<view class="default_page adffcac" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
 
- 		<cus-header title='问卷结果'></cus-header>
 
- 		<image :src="imgBase+'pay_success.png'"></image>
 
- 		<div class="title">问卷提交成功</div>
 
- 		<div class="tip">正在为您生成报告,预计生成时间<span>7~10分钟</span>~<br/>稍后可去报告管理中查看评估报告结果</div>
 
- 		<div class="btn" @click="reviewReport">查看报告</div>
 
- 		<div class="btn back" @click="returnHome">返回首页</div>
 
- 	</view>
 
- </template>
 
- <script>
 
- 	export default {
 
- 		data(){
 
- 			return {
 
- 				
 
- 			}
 
- 		},
 
- 		methods:{
 
- 			reviewReport(){
 
- 				
 
- 			},
 
- 			returnHome(){
 
- 				uni.reLaunch({
 
- 					url:'/pages/home'
 
- 				})
 
- 			},
 
- 		}
 
- 	}
 
- </script>
 
- <style scoped lang="scss">
 
- 	.default_page{
 
- 		padding: 0 84rpx;
 
- 		background: #FFFFFF;
 
- 		
 
- 		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;
 
- 			span{
 
- 				color: #667E90;
 
- 				font-weight: bold;
 
- 			}
 
- 		}
 
- 		
 
- 		.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: 197rpx;
 
- 			&.back{
 
- 				background: #FFFFFF;
 
- 				border: 1rpx solid #E0E4E7;
 
- 				color: #667E90;
 
- 				margin-top: 40rpx;
 
- 			}
 
- 		}
 
- 	}
 
- </style>
 
 
  |