page-answer-recruit-result.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <div class="page-exam-item-result-box">
  3. <van-nav-bar title="答题" left-arrow @click-left="handleBackFun" />
  4. <div class="exam-item-result-div">
  5. <div class="exam-item-result-title">本次答对题目数</div>
  6. <div class="exam-item-result-grade">{{ rightNum }}</div>
  7. <div>正确率:{{ accuracyVal }}</div>
  8. <!-- <div>积分+{{ rightNum }}</div> -->
  9. <div class="exam-item-detial-button-box">
  10. <van-button
  11. class="exam-item-detial-button"
  12. type="primary"
  13. color="#0088e9"
  14. @click="handleBackFun"
  15. >返回</van-button
  16. >
  17. <van-button
  18. v-if="answerRecruitId !='weekly-questions' && answerRecruitId !='special-questions'"
  19. class="exam-item-detial-button"
  20. type="primary"
  21. color="#0088e9"
  22. @click="handleGoOnFun"
  23. >再来一组</van-button
  24. >
  25. </div>
  26. </div>
  27. </div>
  28. </template>
  29. <script>
  30. import { mapState } from "vuex";
  31. export default {
  32. name: "page-answer-recruit-result",
  33. components: {},
  34. data() {
  35. return {
  36. rightNum: 0,
  37. allQuestionsNum: 0
  38. };
  39. },
  40. created() {
  41. this.rightNum = this.$route.params.rightNum || 0;
  42. this.allQuestionsNum = this.$route.params.allQuestionsNum || 0;
  43. this.setLanXinNavigator();
  44. },
  45. activated() {
  46. this.setLanXinNavigator();
  47. },
  48. mounted() {},
  49. computed: {
  50. ...mapState({
  51. answerRecruitId: state => state.answer.answerRecruitId
  52. }),
  53. accuracyVal() {
  54. let that = this;
  55. if (isNaN(that.rightNum) || isNaN(that.allQuestionsNum)) {
  56. return "-";
  57. }
  58. return that.allQuestionsNum <= 0
  59. ? "0%"
  60. : Math.round((that.rightNum / that.allQuestionsNum) * 10000) / 100.0 +
  61. "%";
  62. }
  63. },
  64. methods: {
  65. // 设置蓝信navigator
  66. setLanXinNavigator() {
  67. lx.ui.setNavigationBarTitle({
  68. title: "答题"
  69. });
  70. },
  71. // 操作:返回
  72. handleBackFun() {
  73. this.$router.back();
  74. },
  75. // 操作:再来一组
  76. handleGoOnFun() {
  77. this.$store.commit("updateAnswerItemStore", {
  78. field: "answerRecruitId",
  79. value: "daily-questions" // item.id
  80. });
  81. this.$router.replace({ name: "answerRecruit" });
  82. }
  83. }
  84. };
  85. </script>
  86. <style lang="scss" scoped>
  87. @import "~@/styles/mixin";
  88. .page-exam-item-result-box {
  89. width: 100%;
  90. height: 100%;
  91. overflow-y: auto;
  92. overflow-x: hidden;
  93. font-size: 0.6rem;
  94. .exam-item-result-div {
  95. margin: 0.5rem 0.5rem;
  96. border: 1px solid #e4e8eb;
  97. background-color: #fff;
  98. border-radius: 4px;
  99. padding: 0.5rem 0.5rem;
  100. .exam-item-result-title {
  101. font-size: 0.7rem;
  102. }
  103. .exam-item-result-grade {
  104. font-size: 1.5rem;
  105. text-align: center;
  106. margin: 0.5rem 0;
  107. border-bottom: 1px solid #e4e8eb;
  108. }
  109. .exam-item-detial-button-box {
  110. display: flex;
  111. justify-content: space-between;
  112. align-items: center;
  113. margin-top: 0.5rem;
  114. .exam-item-detial-button {
  115. width: 48%;
  116. height: auto;
  117. padding: 0.5rem 0.5rem;
  118. font-size: 0.65rem;
  119. }
  120. }
  121. }
  122. }
  123. </style>