gap.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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"><div>{{ `(${option[checkJson.type].name})` }}</div><div v-html="checkJson.title"></div></div> -->
  7. <div class="title">
  8. {{ `(${option[checkJson.type].name})` + checkJson.title }}
  9. <!-- <span>({{ checkJson.answer ? '参考答案:'+checkJson.answer : '暂无参考答案' }})</span> -->
  10. <!-- </div><div v-html="checkJson.title"></div> -->
  11. </div>
  12. <div class="choices">
  13. <textarea :readonly="checktype == 2" rows="2" v-autoHeight="68" class="binfo_input binfo_textarea" cols v-model="checkJson.answer2"
  14. placeholder=""></textarea>
  15. </div>
  16. </div>
  17. </div>
  18. </template>
  19. <script>
  20. export default {
  21. props: {
  22. cJson: {
  23. type: Object,
  24. },
  25. checktype: {
  26. type: Number,
  27. default: 1
  28. }
  29. },
  30. data() {
  31. return {
  32. option: {
  33. 1: { name: '问答题' },
  34. },
  35. checkJson: undefined
  36. }
  37. },
  38. watch: {
  39. checkJson: {
  40. handler(newValue) {
  41. this.$emit('update:cJson', newValue)
  42. },
  43. deep: true
  44. },
  45. },
  46. directives: {
  47. autoHeight: {
  48. update(el, binding) {
  49. const { value } = binding
  50. if (value && typeof value === 'number') {
  51. el.style.height = `${value}px`
  52. } else {
  53. el.style.height = 'auto'
  54. }
  55. },
  56. componentUpdated(el) {
  57. el.style.height = `${el.scrollHeight + 5}px`
  58. },
  59. },
  60. },
  61. methods: {
  62. depthCopy(s) {
  63. return JSON.parse(JSON.stringify(s));
  64. },
  65. },
  66. mounted() {
  67. this.checkJson = this.cJson ? this.depthCopy(this.cJson) : undefined
  68. setTimeout(() => {
  69. this.checkJson.answer2 += "*0*%*";
  70. setTimeout(() => {
  71. this.checkJson.answer2 = this.checkJson.answer2.replaceAll("*0*%*", "");
  72. }, 0);
  73. }, 100);
  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. .choice_box>.title {
  90. font-weight: bold;
  91. width: 100%;
  92. word-break: break-all;
  93. }
  94. .choice_box>.choices {
  95. margin-top: 10px;
  96. }
  97. .binfo_input {
  98. width: 100%;
  99. margin: 0;
  100. padding: 12px 14px;
  101. display: block;
  102. min-width: 0;
  103. outline: none;
  104. box-sizing: border-box;
  105. background: none;
  106. border: none;
  107. border-radius: 4px;
  108. background: #fff;
  109. font-size: 16px;
  110. resize: none;
  111. font-family: 'Microsoft YaHei';
  112. min-height: 48px;
  113. /* border: 1px solid #3682fc00; */
  114. border: 1.5px solid #CAD1DC;
  115. }
  116. .binfo_textarea {
  117. border: 1.5px solid #CAD1DC;
  118. font-size: 16px;
  119. resize: none;
  120. /* background: #f6f6f6; */
  121. font-family: 'Microsoft YaHei';
  122. }
  123. .binfo_input:focus-visible {
  124. border: 1.5px solid #3681FC !important;
  125. }
  126. </style>