questionnaireResult.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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" @click="toCreate">去生成</view>
  8. <view class="btn back" @click="returnHome">返回首页</view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data(){
  14. return {
  15. }
  16. },
  17. methods:{
  18. toCreate(){
  19. uni.redirectTo({
  20. url:'/pagesHome/questionnaire?type=create'
  21. })
  22. },
  23. returnHome(){
  24. uni.reLaunch({
  25. url:'/pages/home'
  26. })
  27. },
  28. }
  29. }
  30. </script>
  31. <style scoped lang="scss">
  32. .default_page{
  33. padding: 0 84rpx;
  34. background: #FFFFFF;
  35. image{
  36. width: 226rpx;
  37. height: 142rpx;
  38. margin-top: 196rpx;
  39. }
  40. .title{
  41. font-family: PingFangSC, PingFang SC;
  42. font-weight: 600;
  43. font-size: 40rpx;
  44. color: #002846;
  45. line-height: 51rpx;
  46. margin-top: 42rpx;
  47. }
  48. .tip{
  49. font-family: PingFangSC, PingFang SC;
  50. font-weight: 400;
  51. font-size: 28rpx;
  52. color: #95A5B1;
  53. line-height: 51rpx;
  54. margin-top: 8rpx;
  55. text-align: center;
  56. span{
  57. color: #667E90;
  58. font-weight: bold;
  59. }
  60. }
  61. .btn{
  62. width: 100%;
  63. height: 88rpx;
  64. border: 1rpx solid #33A7A7;
  65. background: linear-gradient( 90deg, #33A7A7 0%, #64BBBB 100%);;
  66. border-radius: 44rpx;
  67. font-family: PingFang-SC, PingFang-SC;
  68. font-weight: bold;
  69. font-size: 32rpx;
  70. color: #FFFFFF;
  71. line-height: 88rpx;
  72. text-align: center;
  73. letter-spacing: 2rpx;
  74. margin-top: 197rpx;
  75. &.back{
  76. background: #FFFFFF;
  77. border: 1rpx solid #E0E4E7;
  78. color: #667E90;
  79. margin-top: 40rpx;
  80. }
  81. }
  82. }
  83. </style>