through-question-end.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <div class="page-through-question-item-result-box">
  3. <van-nav-bar title="闯关答题" />
  4. <div class="through-question-item-result-div">
  5. <div
  6. v-if="answerThroughNumber < 5"
  7. class="through-question-item-result-title"
  8. >
  9. 第{{ answerThroughNumber }}关闯关成功
  10. </div>
  11. <div v-else class="through-question-success">
  12. <div class="through-question-success-title">恭喜,闯关成功</div>
  13. <div class="through-question-success-grades">积分+{{ grades }}</div>
  14. </div>
  15. <div class="through-question-item-detial-button-box">
  16. <van-button
  17. :class="{
  18. 'through-question-item-detial-button': true,
  19. 'through-question-item-detial-button-row': answerThroughNumber >= 5
  20. }"
  21. type="primary"
  22. color="#0088e9"
  23. @click="handleBackFun"
  24. >返回</van-button
  25. >
  26. <van-button
  27. class="through-question-item-detial-button"
  28. v-if="answerThroughNumber < 5"
  29. type="primary"
  30. color="#0088e9"
  31. @click="handleStartThroughFun"
  32. >第{{ answerThroughNumber + 1 }}关</van-button
  33. >
  34. </div>
  35. </div>
  36. </div>
  37. </template>
  38. <script>
  39. import { mapState } from "vuex";
  40. export default {
  41. name: "through-question-end",
  42. components: {},
  43. data() {
  44. return {
  45. grades: 5
  46. };
  47. },
  48. created() { this.setLanXinNavigator(); },
  49. activated() {
  50. this.setLanXinNavigator();
  51. },
  52. mounted() {},
  53. computed: {
  54. ...mapState({
  55. user: state => state.user,
  56. answerThroughNumber: state => state.answer.answerThroughNumber
  57. })
  58. },
  59. methods: {
  60. // 设置蓝信navigator
  61. setLanXinNavigator() {
  62. lx.ui.setNavigationBarTitle({
  63. title: "答题闯关"
  64. });
  65. },
  66. // 操作:返回
  67. handleBackFun() {
  68. this.$router.back();
  69. },
  70. // 操作:继续下一关
  71. handleStartThroughFun() {
  72. let num = this.answerThroughNumber + 1;
  73. this.$store.commit("updateAnswerItemStore", {
  74. field: "answerThroughNumber",
  75. value: num
  76. });
  77. this.$router.replace({
  78. name: "throughQuestionDoing"
  79. });
  80. // 调用接口
  81. if (num >= 0) {
  82. let path = {
  83. userName: this.user.userInfo.userName
  84. };
  85. let params = {
  86. upLimit: 10,
  87. oncePoint: 10
  88. };
  89. this.$_http
  90. .post(
  91. this.$pathParams(this.$_API.JTXT_POST_EVENTS_USERNAME, path), params
  92. )
  93. .then(res => {
  94. console.log("---" + JSON.stringify(res));
  95. })
  96. .catch(() => {
  97. this.$store.commit("toggleLoading", false);
  98. });
  99. }
  100. }
  101. }
  102. };
  103. </script>
  104. <style lang="scss" scoped>
  105. @import "~@/styles/mixin";
  106. .page-through-question-item-result-box {
  107. width: 100%;
  108. height: 100%;
  109. overflow-y: auto;
  110. overflow-x: hidden;
  111. font-size: 0.6rem;
  112. .through-question-item-result-div {
  113. margin: 0.5rem 0.5rem;
  114. border: 1px solid #e4e8eb;
  115. background-color: #fff;
  116. border-radius: 4px;
  117. padding: 0.5rem 0.5rem 1rem;
  118. .through-question-item-result-title {
  119. font-size: 0.7rem;
  120. text-align: center;
  121. font-weight: bold;
  122. }
  123. .through-question-success {
  124. .through-question-success-title {
  125. font-size: 0.75rem;
  126. color: red;
  127. text-align: center;
  128. }
  129. .through-question-success-grades {
  130. font-size: 0.65rem;
  131. margin-top: 0.5rem;
  132. }
  133. }
  134. .through-question-item-detial-button-box {
  135. display: flex;
  136. justify-content: space-between;
  137. align-items: center;
  138. margin-top: 1rem;
  139. .through-question-item-detial-button {
  140. width: 48%;
  141. height: auto;
  142. padding: 0.5rem 0.5rem;
  143. font-size: 0.65rem;
  144. }
  145. .through-question-item-detial-button-row {
  146. width: 100%;
  147. }
  148. }
  149. }
  150. }
  151. </style>