说明
语音文本输入框组件
# 使用
<template>
<view class="inspection_form_class">
<suit-form :model="inspectionInfo" ref="form" labelWidth="105" :rules="rules">
<suit-form-item label="备注" prop="remark">
<suit-textarea key="remark" :content.sync="inspectionInfo.remark" isCount :height="100"
:maxlength="200" placeholder="请输入备注" border="none" />
</suit-form-item>
</suit-form>
</view>
</template>
<script>
export default {
data() {
return {
}
}
}
</script>
# 参数说明
# 属性
属性 | 描述 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
content | 文本框显示的内容 | String | —— | —— |
placeholder | 输入框提示 | String | —— | —— |
maxlength | 最大输入长度 | String | Number | —— | -1 |
border | 边框类型(surround-四周边框,none-无边框,bottom-底部边框) | String | surround、none、bottom | surround |
disabled | 是否禁用 | Boolean | true、false | false |
height | 输入框的高度 | String | Number | —— | 70 |
maxlength | 最大输入长度 | String | Number | —— | -1 |