fix(Field): showWordLimit value.length > maxlength (#3802)

Clicking on the keyboard to associate words causes the current number of words to exceed the limit, but the actual number does not exceed
Disconnect the real machine for debugging
This commit is contained in:
da 2020-12-03 14:44:22 +08:00 committed by GitHub
parent 7244e81505
commit 526f5ef46e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,7 +99,7 @@
</view>
</view>
<view wx:if="{{ showWordLimit && maxlength }}" class="van-field__word-limit">
<view class="{{ utils.bem('field__word-num', { full: value.length >= maxlength }) }}">{{ value.length }}</view>/{{ maxlength }}
<view class="{{ utils.bem('field__word-num', { full: value.length >= maxlength }) }}">{{ value.length >= maxlength ? maxlength : value.length }}</view>/{{ maxlength }}
</view>
<view wx:if="{{ errorMessage }}" class="{{ utils.bem('field__error-message', [errorMessageAlign, { disabled, error }]) }}">
{{ errorMessage }}