questionnaireResult.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <view class="page adffcacjc" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
  3. <cus-header title='问卷结果'></cus-header>
  4. <div class="top adffcacjc">
  5. <image src="@/static/result.png"></image>
  6. <div class="text">您的问卷已经提交,感谢您的参与<br>已为您生成个人分析报告!</div>
  7. </div>
  8. <div class="btns adfacjb">
  9. <div class="pre" @tap="toBack">返回</div>
  10. <div class="pre ck" @tap="reviewRepoer">查看报告</div>
  11. </div>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data(){
  17. return {
  18. }
  19. },
  20. methods:{
  21. toBack(){
  22. uni.reLaunch({
  23. url:'/pages/questionnaire'
  24. })
  25. },
  26. reviewRepoer(){
  27. },
  28. }
  29. }
  30. </script>
  31. <style scoped lang="less">
  32. .page{
  33. background: #FFFFFF;
  34. box-sizing: border-box;
  35. .top{
  36. image{
  37. width: 214rpx;
  38. height: 214rpx;
  39. }
  40. .text{
  41. font-family: PingFangSC, PingFang SC;
  42. font-weight: 400;
  43. font-size: 32rpx;
  44. color: #393939;
  45. line-height: 51rpx;
  46. text-align: center;
  47. margin-top: 30rpx;
  48. }
  49. }
  50. .btns{
  51. width: calc(100% - 80rpx);
  52. margin: 306rpx 40rpx 0;
  53. .pre{
  54. width: calc(50% - 15rpx);
  55. height: 88rpx;
  56. border: 1rpx solid #761E6A;
  57. border-radius: 20rpx;
  58. font-family: PingFangSC, PingFang SC;
  59. font-weight: 400;
  60. font-size: 32rpx;
  61. color: #761E6A;
  62. line-height: 88rpx;
  63. text-align: center;
  64. letter-spacing: 2rpx;
  65. &.ck{
  66. background: #833478;
  67. color: #FFFFFF;
  68. }
  69. }
  70. }
  71. }
  72. </style>