first commit
This commit is contained in:
9
衣莎项目/源码/YiShaXiYi/extend/iview/dist/input-number/index.wxml
vendored
Normal file
9
衣莎项目/源码/YiShaXiYi/extend/iview/dist/input-number/index.wxml
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<view class="i-class i-input-number i-input-number-size-{{ size }}">
|
||||
<view class="i-input-number-minus {{ value <= min ? 'i-input-number-disabled' : '' }}" data-disabled="{{ value <= min }}" catchtap="handleMinus">
|
||||
<wux-icon size="18" type="md-remove" />
|
||||
</view>
|
||||
<input disabled class="i-input-number-text {{ min >= max ? 'i-input-number-disabled' : '' }}" type="number" value="{{ value }}" bindblur="handleBlur" />
|
||||
<view class="i-input-number-plus {{ value >= max ? 'i-input-number-disabled' : '' }}" data-disabled="{{ value >= max }}" catchtap="handlePlus">
|
||||
<wux-icon size="18" type="md-add" />
|
||||
</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user