forms/textarea/CTextArea.vue
@@ -5,7 +5,7 @@ * 支持只读模式和自动增高功能 * @author Tevin */ <template> <view class="c-textarea" @@ -25,6 +25,7 @@ :style="{minHeight: areaHeight, height: areaHeight}" :placeholder="placeholder" :value="itemRes.formData[itemRes.name]" :maxlength="maxLength" :autoFocus="false" :autoHeight="true" @input="evt=>itemRes.onChange(evt.detail.value)" @@ -53,6 +54,8 @@ }, // 文本雨输入区行数 rows: Number, // 最大输入长度 maxLength: Number, // 只读模式 readOnly: { type: Boolean,