reportResult.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <view class="default_page" :style="{'height':h+'px', 'padding-top':mt+'px'}">
  3. <cus-header title='生成报告' bgColor="transparent"></cus-header>
  4. <div class="box adffcac">
  5. <div class="box-loading adffcacjc">{{1}}%</div>
  6. <div class="box-p1">{{'报告正在生成中~'}}</div>
  7. <div class="box-p2">预计所需时间7-10分钟</div>
  8. <div class="box-p3">{{'稍后可去报告管理中查看结果'}}</div>
  9. </div>
  10. <div class="form">
  11. <div class="form-item adfacjb">
  12. <div class="form-item-left">问卷名称</div>
  13. <div class="form-item-right">{{'GW+MC PREILL36测评题库版本'}}</div>
  14. </div>
  15. <div class="form-item adfacjb">
  16. <div class="form-item-left">团队名称</div>
  17. <div class="form-item-right">{{'甜梦巧克力有限公司'}}</div>
  18. </div>
  19. <div class="form-item adfacjb">
  20. <div class="form-item-left">创建时间</div>
  21. <div class="form-item-right">{{'2025-10-23 15:00'}}</div>
  22. </div>
  23. </div>
  24. <div class="btn">
  25. <div class="zt_btn" @click="handleBack">返回</div>
  26. <!-- <div class="zt_btn" @click="handleReCreate">重新生成</div> -->
  27. </div>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data(){
  33. return {
  34. // 报告生成失败
  35. // 失败原因:网络延迟
  36. }
  37. },
  38. methods:{
  39. handleBack(){
  40. uni.navigateBack()
  41. },
  42. handleReCreate(){
  43. }
  44. }
  45. }
  46. </script>
  47. <style scoped lang="scss">
  48. .default_page{
  49. background: #F7F7F7;
  50. .box{
  51. width: 100%;
  52. background: #FFFFFF;
  53. border-radius: 36rpx 36rpx 0rpx 0rpx;
  54. padding: 54rpx 0 64rpx;
  55. &-loading{
  56. width: 340rpx;
  57. height: 340rpx;
  58. background: url('https://gitee.com/hw_0302/chuang-heng-wechat-images/raw/master/send_loading.png') no-repeat;
  59. background-size: 100% 100%;
  60. font-family: PingFang-SC, PingFang-SC;
  61. font-weight: bold;
  62. font-size: 54rpx;
  63. color: #FFFFFF;
  64. line-height: 54rpx;
  65. }
  66. &-p1{
  67. font-family: PingFang-SC, PingFang-SC;
  68. font-weight: bold;
  69. font-size: 32rpx;
  70. color: #002846;
  71. line-height: 40rpx;
  72. text-align: center;
  73. margin-top: 41rpx;
  74. }
  75. &-p2{
  76. font-family: PingFang-SC, PingFang-SC;
  77. font-weight: bold;
  78. font-size: 28rpx;
  79. color: #002846;
  80. line-height: 28rpx;
  81. text-align: center;
  82. margin-top: 23rpx;
  83. }
  84. &-p3{
  85. font-family: PingFangSC, PingFang SC;
  86. font-weight: 400;
  87. font-size: 28rpx;
  88. color: #667E90;
  89. line-height: 28rpx;
  90. text-align: center;
  91. margin-top: 24rpx;
  92. }
  93. }
  94. .form{
  95. width: 100%;
  96. margin-top: 20rpx;
  97. &-item{
  98. padding: 28rpx 24rpx;
  99. background: #FFFFFF;
  100. box-shadow: inset 0rpx -1rpx 0rpx 0rpx #EFEFEF;
  101. &-left{
  102. font-family: PingFangSC, PingFang SC;
  103. font-weight: 400;
  104. font-size: 30rpx;
  105. color: #002846;
  106. line-height: 42rpx;
  107. }
  108. &-right{
  109. font-family: PingFangSC, PingFang SC;
  110. font-weight: 400;
  111. font-size: 30rpx;
  112. color: #667E90;
  113. line-height: 32rpx;
  114. text-align: right;
  115. }
  116. }
  117. }
  118. .btn{
  119. width: calc(100% -100rpx);
  120. margin: 120rpx 50rpx 0;
  121. }
  122. }
  123. </style>