提交 9467b7fd 编写于 作者: RedPing97's avatar RedPing97

优化输入框组件

上级 81fe5509
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
:placeholder="placeholder" :placeholder="placeholder"
:size="size" :size="size"
:type="type" :type="type"
:rows="rows"
v-model="CurrentVal" v-model="CurrentVal"
:disabled="disabled ? true : false" :disabled="disabled ? true : false"
:element-id="textareaId" :element-id="textareaId"
...@@ -50,6 +51,9 @@ export default class InputBox extends Vue { ...@@ -50,6 +51,9 @@ export default class InputBox extends Vue {
textarea.style=this.textareaStyle; textarea.style=this.textareaStyle;
} }
} }
if(this.editorType && this.editorType == "TEXTAREA_10") {
this.rows = 10;
}
} }
/** /**
...@@ -80,6 +84,20 @@ export default class InputBox extends Vue { ...@@ -80,6 +84,20 @@ export default class InputBox extends Vue {
*/ */
@Prop() public size?: string; @Prop() public size?: string;
/**
* 编辑器样式
* @type {String}
* @memberof InputBoxUnit
*/
@Prop() public editorType?: string;
/**
* 文本行数
* @type {String}
* @memberof InputBoxUnit
*/
public rows: number = 2;
/** /**
* placeholder值 * placeholder值
* @type {String} * @type {String}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册