mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Form): add disabled and readonly prop (#7830)
* feat(Form): add disabled and readonly prop * chore(Field): 使用 getProp 方法 * fix(Field): 将 computed 改为直接取值
This commit is contained in:
parent
568ba3d815
commit
149cde1ce1
@ -40,8 +40,14 @@ export default createComponent({
|
||||
rows: [Number, String],
|
||||
name: String,
|
||||
rules: Array,
|
||||
disabled: Boolean,
|
||||
readonly: Boolean,
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
default: null,
|
||||
},
|
||||
readonly: {
|
||||
type: Boolean,
|
||||
default: null,
|
||||
},
|
||||
autosize: [Boolean, Object],
|
||||
leftIcon: String,
|
||||
rightIcon: String,
|
||||
@ -103,8 +109,21 @@ export default createComponent({
|
||||
const inputRef = ref();
|
||||
const childFieldValue = ref();
|
||||
|
||||
const { parent: form } = useParent(FORM_KEY);
|
||||
|
||||
const getProp = (key) => {
|
||||
if (isDef(props[key])) {
|
||||
return props[key];
|
||||
}
|
||||
if (form && isDef(form.props[key])) {
|
||||
return form.props[key];
|
||||
}
|
||||
};
|
||||
|
||||
const showClear = computed(() => {
|
||||
if (props.clearable && !props.readonly) {
|
||||
const readonly = getProp('readonly');
|
||||
|
||||
if (props.clearable && !readonly) {
|
||||
const hasValue = isDef(props.modelValue) && props.modelValue !== '';
|
||||
const trigger =
|
||||
props.clearTrigger === 'always' ||
|
||||
@ -199,8 +218,6 @@ export default createComponent({
|
||||
});
|
||||
});
|
||||
|
||||
const { parent: form } = useParent(FORM_KEY);
|
||||
|
||||
const validateWithTrigger = (trigger) => {
|
||||
if (form && props.rules) {
|
||||
const defaultTrigger = form.props.validateTrigger === trigger;
|
||||
@ -272,7 +289,8 @@ export default createComponent({
|
||||
emit('focus', event);
|
||||
|
||||
// readonly not work in lagacy mobile safari
|
||||
if (props.readonly) {
|
||||
const readonly = getProp('readonly');
|
||||
if (readonly) {
|
||||
blur();
|
||||
}
|
||||
};
|
||||
@ -312,15 +330,6 @@ export default createComponent({
|
||||
}
|
||||
});
|
||||
|
||||
const getProp = (key) => {
|
||||
if (isDef(props[key])) {
|
||||
return props[key];
|
||||
}
|
||||
if (form && isDef(form.props[key])) {
|
||||
return form.props[key];
|
||||
}
|
||||
};
|
||||
|
||||
const labelStyle = computed(() => {
|
||||
const labelWidth = getProp('labelWidth');
|
||||
if (labelWidth) {
|
||||
@ -384,6 +393,8 @@ export default createComponent({
|
||||
};
|
||||
|
||||
const renderInput = () => {
|
||||
const disabled = getProp('disabled');
|
||||
const readonly = getProp('readonly');
|
||||
const inputAlign = getProp('inputAlign');
|
||||
|
||||
if (slots.input) {
|
||||
@ -403,8 +414,8 @@ export default createComponent({
|
||||
rows: props.rows,
|
||||
class: bem('control', inputAlign),
|
||||
value: props.modelValue,
|
||||
disabled: props.disabled,
|
||||
readonly: props.readonly,
|
||||
disabled,
|
||||
readonly,
|
||||
placeholder: props.placeholder,
|
||||
onBlur,
|
||||
onFocus,
|
||||
@ -539,6 +550,7 @@ export default createComponent({
|
||||
});
|
||||
|
||||
return () => {
|
||||
const disabled = getProp('disabled');
|
||||
const labelAlign = getProp('labelAlign');
|
||||
const Label = renderLabel();
|
||||
const LeftIcon = renderLeftIcon();
|
||||
@ -554,7 +566,7 @@ export default createComponent({
|
||||
icon={props.leftIcon}
|
||||
class={bem({
|
||||
error: showError.value,
|
||||
disabled: props.disabled,
|
||||
disabled,
|
||||
[`label-${labelAlign}`]: labelAlign,
|
||||
'min-height': props.type === 'textarea' && !props.autosize,
|
||||
})}
|
||||
|
@ -471,6 +471,8 @@ export default {
|
||||
|
||||
| Attribute | Description | Type | Default |
|
||||
| --- | --- | --- | --- |
|
||||
| disabled | Whether to disable field | _boolean_ | `false` |
|
||||
| readonly | Whether to be readonly | _boolean_ | `false` |
|
||||
| label-width | Field label width | _number \| string_ | `6.2em` |
|
||||
| label-align | Field label align, can be set to `center` `right` | _string_ | `left` |
|
||||
| input-align | Field input align, can be set to `center` `right` | _string_ | `left` |
|
||||
|
@ -504,6 +504,8 @@ export default {
|
||||
|
||||
| 参数 | 说明 | 类型 | 默认值 |
|
||||
| --- | --- | --- | --- |
|
||||
| disabled | 是否禁用输入框 | _boolean_ | `false` |
|
||||
| readonly | 是否只读 | _boolean_ | `false` |
|
||||
| label-width | 表单项 label 宽度,默认单位为`px` | _number \| string_ | `6.2em` |
|
||||
| label-align | 表单项 label 对齐方式,可选值为 `center` `right` | _string_ | `left` |
|
||||
| input-align | 输入框对齐方式,可选值为 `center` `right` | _string_ | `left` |
|
||||
|
@ -7,6 +7,8 @@ const [createComponent, bem] = createNamespace('form');
|
||||
|
||||
export default createComponent({
|
||||
props: {
|
||||
disabled: Boolean,
|
||||
readonly: Boolean,
|
||||
colon: Boolean,
|
||||
labelWidth: [Number, String],
|
||||
labelAlign: String,
|
||||
|
Loading…
x
Reference in New Issue
Block a user