|
@@ -14,6 +14,7 @@
|
|
|
></div>
|
|
|
|
|
|
<el-input
|
|
|
+ class="write-input"
|
|
|
v-model="answer.answer_list[0].text"
|
|
|
rows="12"
|
|
|
resize="none"
|
|
@@ -23,6 +24,7 @@
|
|
|
show-word-limit
|
|
|
:readonly="disabled"
|
|
|
@input="handleInput"
|
|
|
+ :autosize="{ minRows: 12 }"
|
|
|
/>
|
|
|
|
|
|
<div v-if="isEnable(data.property.is_enable_reference_answer) && isShowRightAnswer" class="reference-box">
|
|
@@ -83,6 +85,19 @@ export default {
|
|
|
justify-content: center;
|
|
|
}
|
|
|
|
|
|
+ .write-input {
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep .el-textarea .el-textarea__inner {
|
|
|
+ padding-bottom: 25px;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep .el-textarea .el-input__count {
|
|
|
+ font-size: 14px;
|
|
|
+ background-color: #f2f3f5;
|
|
|
+ }
|
|
|
+
|
|
|
.reference-box {
|
|
|
padding: 12px;
|
|
|
background: #f9f8f9;
|