eva.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <div class="c_box">
  3. <div class="choice_box">
  4. <div class="title" style="display: flex;">
  5. <span style="min-width: fit-content;">{{ tindex + 1 + "、" }}</span>
  6. <span>{{ checkJson.title }}</span>
  7. </div>
  8. <div class="detail" v-if="checkJson.detail" v-html="checkJson.detail"
  9. style="color: #00000099;margin-top: 5px;">
  10. </div>
  11. <div class="choices">
  12. <div class="score" :class="{active: (checkJson.answer2 || checkJson.answer2 === 0) && (checkJson.answer2 > index || checkJson.answer2 === index)}" @click="score(index)" v-for="(item, index) in (parseInt(checkJson.big) - parseInt(checkJson.small) + 1)" :key="index">{{ parseInt(checkJson.small) + index }}</div>
  13. </div>
  14. </div>
  15. </div>
  16. </template>
  17. <script>
  18. export default {
  19. props: {
  20. tindex: {
  21. type: Number
  22. },
  23. cJson: {
  24. type: Object,
  25. },
  26. checktype: {
  27. type: Number,
  28. default: 1
  29. },
  30. see: {
  31. type: Boolean,
  32. default: false
  33. }
  34. },
  35. data() {
  36. return {
  37. option: {
  38. 1: { name: '附件' },
  39. },
  40. userid: this.$route.query.userid,
  41. checkJson: undefined,
  42. progress: 0,
  43. isFinishSize: 0,
  44. proVisible: false,
  45. isAllSize: 0,
  46. wurl: "",
  47. isTong: false
  48. }
  49. },
  50. watch: {
  51. checkJson: {
  52. handler(newValue) {
  53. this.$emit('update:cJson', newValue)
  54. },
  55. deep: true
  56. },
  57. },
  58. methods: {
  59. depthCopy(s) {
  60. return JSON.parse(JSON.stringify(s));
  61. },
  62. openFileBox() {
  63. this.dialogVisiblefile = true
  64. },
  65. score(index){
  66. if(this.checktype == '2'){
  67. return
  68. }
  69. this.checkJson.answer2 = index
  70. }
  71. },
  72. mounted() {
  73. this.checkJson = this.cJson ? this.depthCopy(this.cJson) : undefined
  74. }
  75. }
  76. </script>
  77. <style scoped>
  78. .c_box {
  79. width: 100%;
  80. position: relative;
  81. }
  82. /* .mask {
  83. position: absolute;
  84. height: 100%;
  85. width: 100%;
  86. z-index: 2;
  87. } */
  88. .choice_box {
  89. white-space: pre-line;
  90. }
  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. display: flex;
  99. flex-wrap: wrap;
  100. justify-content: center;
  101. width: 90%;
  102. margin: 10px auto 0;
  103. }
  104. .choices > .score{
  105. width: 40px;
  106. height: 40px;
  107. display: flex;
  108. align-items: center;
  109. justify-content: center;
  110. margin: 0 20px 10px 0;
  111. border-radius: 5px;
  112. background: #dee0e3;
  113. font-size: 18px;
  114. font-weight: bold;
  115. color: #fff;
  116. cursor: pointer;
  117. }
  118. .choices > .score.active{
  119. background: #65b1ff;
  120. }
  121. </style>