questionnaireResult.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.navigateBack();
  23. },
  24. reviewRepoer(){
  25. },
  26. }
  27. }
  28. </script>
  29. <style scoped lang="less">
  30. .page{
  31. background: #FFFFFF;
  32. box-sizing: border-box;
  33. .top{
  34. image{
  35. width: 214rpx;
  36. height: 214rpx;
  37. }
  38. .text{
  39. font-family: PingFangSC, PingFang SC;
  40. font-weight: 400;
  41. font-size: 32rpx;
  42. color: #393939;
  43. line-height: 51rpx;
  44. text-align: center;
  45. margin-top: 30rpx;
  46. }
  47. }
  48. .btns{
  49. width: calc(100% - 80rpx);
  50. margin: 306rpx 40rpx 0;
  51. .pre{
  52. width: calc(50% - 15rpx);
  53. height: 88rpx;
  54. border: 1rpx solid #761E6A;
  55. border-radius: 20rpx;
  56. font-family: PingFangSC, PingFang SC;
  57. font-weight: 400;
  58. font-size: 32rpx;
  59. color: #761E6A;
  60. line-height: 88rpx;
  61. text-align: center;
  62. letter-spacing: 2rpx;
  63. &.ck{
  64. background: #833478;
  65. color: #FFFFFF;
  66. }
  67. }
  68. }
  69. }
  70. </style>