32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
<view class="i-class i-cell i-input {{ error ? 'i-input-error' : '' }} {{ mode === 'wrapped' ? 'i-input-wrapped' : '' }}">
|
|
<view wx:if="{{ title }}" class="i-cell-hd i-input-title">{{ title }}</view>
|
|
<textarea
|
|
wx:if="{{ type === 'textarea' }}"
|
|
auto-height
|
|
disabled="{{ disabled }}"
|
|
focus="{{ autofocus }}"
|
|
value="{{ value }}"
|
|
placeholder="{{ placeholder }}"
|
|
maxlength="{{ maxlength }}"
|
|
class="i-input-input i-cell-bd {{ right ? 'i-input-input-right' : '' }}"
|
|
placeholder-class="i-input-placeholder"
|
|
bindinput="handleInputChange"
|
|
bindfocus="handleInputFocus"
|
|
bindblur="handleInputBlur"
|
|
></textarea>
|
|
<input
|
|
wx:else
|
|
type="{{ type }}"
|
|
disabled="{{ disabled }}"
|
|
focus="{{ autofocus }}"
|
|
value="{{ value }}"
|
|
placeholder="{{ placeholder }}"
|
|
maxlength="{{ maxlength }}"
|
|
class="i-input-input i-cell-bd {{ right ? 'i-input-input-right' : '' }}"
|
|
placeholder-class="i-input-placeholder"
|
|
bindinput="handleInputChange"
|
|
bindfocus="handleInputFocus"
|
|
bindblur="handleInputBlur"
|
|
/>
|
|
</view>
|