ResultThanks.vue 714 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <div class="result-box">
  3. <div class="score">
  4. 考试结束
  5. </div>
  6. <div>
  7. {{ data.thanks }}
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'ResultThanks',
  14. props: {
  15. data: Object
  16. },
  17. data() {
  18. return {
  19. }
  20. },
  21. created() {
  22. },
  23. methods: {
  24. }
  25. }
  26. </script>
  27. <style scoped>
  28. .result-box{
  29. text-align: center;
  30. display: flex;
  31. align-items: center;
  32. justify-content: center;
  33. flex-direction: column;
  34. line-height: 50px;
  35. min-height: 50vh;
  36. }
  37. .result-box .score{
  38. font-size: 30px;
  39. font-weight: 700;
  40. color: #0a84ff
  41. }
  42. .result-box .score span{
  43. font-size: 20px
  44. }
  45. /deep/
  46. .main-bg{
  47. background: transparent !important;
  48. }
  49. </style>