mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] Field: input align not work (#789)
This commit is contained in:
parent
345edd9df7
commit
a0a2c3120f
@ -61,7 +61,7 @@ VantComponent({
|
||||
'van-field--error': data.error,
|
||||
'van-field__textarea': data.type === 'textarea',
|
||||
'van-field__input--disabled': data.disabled,
|
||||
[`van-field--${data.inputAlign}`]: data.inputAlign
|
||||
[`van-field__input--${data.inputAlign}`]: data.inputAlign
|
||||
});
|
||||
}
|
||||
},
|
||||
|
@ -20,7 +20,7 @@
|
||||
maxlength="{{ maxlength }}"
|
||||
auto-height="{{ autosize }}"
|
||||
placeholder="{{ placeholder }}"
|
||||
placeholder-style="{{ placeholderStyle }} "
|
||||
placeholder-style="{{ placeholderStyle }}"
|
||||
placeholder-class="{{ error ? 'van-field--error' : '' }}"
|
||||
cursor-spacing="{{ cursorSpacing }}"
|
||||
bindinput="onInput"
|
||||
@ -37,7 +37,7 @@
|
||||
disabled="{{ disabled || readonly }}"
|
||||
maxlength="{{ maxlength }}"
|
||||
placeholder="{{ placeholder }}"
|
||||
placeholder-style="{{ placeholderStyle }} "
|
||||
placeholder-style="{{ placeholderStyle }}"
|
||||
placeholder-class="{{ error ? 'van-field--error' : '' }}"
|
||||
confirm-type="{{ confirmType }}"
|
||||
cursor-spacing="{{ cursorSpacing }}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user