choice.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <template>
  2. <div class="c_box">
  3. <!-- <div class="mask"></div> -->
  4. <div v-if="!checkJson">暂未设置题目</div>
  5. <div v-else class="choice_box">
  6. <div class="title">{{ `(${option[checkJson.type].name})` + checkJson.title }}<span style="color: #efa030;" v-if="checkJson.score">({{ '分值:'+checkJson.score+'分' }})</span></div>
  7. <div class="choices">
  8. <div class="choice" v-for="(item, index) in checkJson.array" :key="index">
  9. <div class="choice_c" v-if="checkJson.type == 2"><el-checkbox v-model="checkJson.answer2" :label="index"
  10. :disabled="checktype == 2"></el-checkbox><span
  11. :class="{ right: see && cJson.answer.indexOf(index) != -1 }"
  12. @click="check(checkJson.type, index)">{{ item.option }}</span></div>
  13. <div class="choice_c" v-if="checkJson.type == 1"><el-radio v-model="checkJson.answer2[0]" :label="index"
  14. :disabled="checktype == 2"></el-radio><span
  15. :class="{ right: see && cJson.answer.indexOf(index) != -1 }"
  16. @click="check(checkJson.type, index)">{{ item.option }}</span></div>
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. </template>
  22. <script>
  23. export default {
  24. props: {
  25. cJson: {
  26. type: Object,
  27. },
  28. checktype: {
  29. type: Number,
  30. default: 1
  31. },
  32. see: {
  33. type: Boolean,
  34. default: false
  35. }
  36. },
  37. data() {
  38. return {
  39. option: {
  40. 1: { name: 'Single choice' },
  41. 2: { name: 'Single choice' }
  42. },
  43. checkJson: undefined
  44. }
  45. },
  46. watch: {
  47. checkJson: {
  48. handler(newValue) {
  49. this.$emit('update:cJson', newValue)
  50. },
  51. deep: true
  52. }
  53. },
  54. methods: {
  55. depthCopy(s) {
  56. return JSON.parse(JSON.stringify(s));
  57. },
  58. check(type, index) {
  59. if (this.checktype == 2) {
  60. return;
  61. }
  62. if (type == 2) {
  63. if (this.checkJson.answer2.indexOf(index) == -1) {
  64. this.checkJson.answer2.push(index)
  65. } else {
  66. this.checkJson.answer2.splice(this.checkJson.answer2.indexOf(index), 1)
  67. }
  68. } else if (type == 1) {
  69. this.checkJson.answer2[0] = index
  70. }
  71. this.$forceUpdate()
  72. }
  73. },
  74. mounted() {
  75. this.checkJson = this.cJson ? this.depthCopy(this.cJson) : undefined
  76. }
  77. }
  78. </script>
  79. <style scoped>
  80. .c_box {
  81. width: 100%;
  82. position: relative;
  83. }
  84. .mask {
  85. position: absolute;
  86. height: 100%;
  87. width: 100%;
  88. z-index: 2;
  89. }
  90. .choice_box {}
  91. .choice_box>.title {
  92. font-weight: bold;
  93. width: 100%;
  94. word-break: break-all;
  95. }
  96. .choice_box>.choices {
  97. margin-top: 10px;
  98. padding: 0 10px;
  99. }
  100. .choice_box>.choices>.choice {
  101. word-break: break-all;
  102. }
  103. .choice_box>.choices>.choice+.choice {
  104. margin-top: 5px;
  105. }
  106. .choice_box>.choices>.choice>.choice_c {
  107. display: flex;
  108. }
  109. .choice_box>.choices>.choice>.choice_c>span {
  110. /* margin-left: 10px; */
  111. cursor: pointer;
  112. }
  113. .choice_box>.choices>.choice>.choice_c>.el-checkbox {
  114. margin-top: 4px;
  115. margin-right: 10px;
  116. }
  117. .choice_box>.choices>.choice>.choice_c>.el-radio {
  118. margin-top: 4px;
  119. margin-right: 10px;
  120. }
  121. .choice_c>>>.el-checkbox__label {
  122. display: none;
  123. }
  124. .choice_c>>>.el-radio__label {
  125. display: none;
  126. }
  127. .choice_c .right {
  128. color: #efa030;
  129. }
  130. .choice_c .right::after {
  131. content: '(正确答案)';
  132. }
  133. .choice_box>.choices>.choice>>>.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after {
  134. border-color: #fff !important;
  135. }
  136. .choice_box>.choices>.choice>>>.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner {
  137. background-color: #409EFF !important;
  138. border-color: #409EFF !important;
  139. }
  140. .choice_box>.choices>.choice>>>.el-radio__input.is-disabled.is-checked .el-radio__inner {
  141. background-color: #409EFF !important;
  142. border-color: #409EFF !important;
  143. }
  144. .choice_box>.choices>.choice>>>.el-radio__input.is-disabled.is-checked .el-radio__inner::after {
  145. background-color: #fff !important;
  146. }</style>