questionnaireResult.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <view class="default_page adffcac" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
  3. <cus-header title='问卷结果'></cus-header>
  4. <image :src="imgBase+'pay_success.png'"></image>
  5. <view class="title">问卷提交成功</view>
  6. <view class="tip">感谢您的积极参与!作答完成后,由系统生成个人报告,谢谢。</view>
  7. <view class="btn back" @click="returnHome">返回首页</view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data(){
  13. return {
  14. }
  15. },
  16. methods:{
  17. toCreate(){
  18. uni.redirectTo({
  19. url:'/pagesHome/questionnaire?type=create'
  20. })
  21. },
  22. returnHome(){
  23. uni.reLaunch({
  24. url:'/pages/home'
  25. })
  26. },
  27. }
  28. }
  29. </script>
  30. <style scoped lang="scss">
  31. .default_page{
  32. padding: 0 84rpx;
  33. background: #FFFFFF;
  34. image{
  35. width: 226rpx;
  36. height: 142rpx;
  37. margin-top: 196rpx;
  38. }
  39. .title{
  40. font-family: PingFangSC, PingFang SC;
  41. font-weight: 600;
  42. font-size: 40rpx;
  43. color: #002846;
  44. line-height: 51rpx;
  45. margin-top: 42rpx;
  46. }
  47. .tip{
  48. font-family: PingFangSC, PingFang SC;
  49. font-weight: 400;
  50. font-size: 28rpx;
  51. color: #95A5B1;
  52. line-height: 51rpx;
  53. margin-top: 20rpx;
  54. text-align: center;
  55. span{
  56. color: #667E90;
  57. font-weight: bold;
  58. }
  59. }
  60. .btn{
  61. width: 100%;
  62. height: 88rpx;
  63. border: 1rpx solid #33A7A7;
  64. background: linear-gradient( 90deg, #33A7A7 0%, #64BBBB 100%);;
  65. border-radius: 44rpx;
  66. font-family: PingFang-SC, PingFang-SC;
  67. font-weight: bold;
  68. font-size: 32rpx;
  69. color: #FFFFFF;
  70. line-height: 88rpx;
  71. text-align: center;
  72. letter-spacing: 2rpx;
  73. &.back{
  74. margin-top: 140rpx;
  75. }
  76. }
  77. }
  78. </style>