[new feature] Stepper: add show-plus & show-minus prop (#1839)

This commit is contained in:
neverland 2019-08-07 15:23:14 +08:00 committed by GitHub
parent 5580379153
commit dfdc001ea3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 0 deletions

View File

@ -55,6 +55,8 @@
| disable-input | 是否禁用输入框 | `Boolean` | `false` |
| async-change | 异步变更,为 `true` 时input值不变化仅触发事件 | `Boolean` | `false` |
| input-width | 输入框宽度,须指定单位 | `String` | `30px` |
| show-plus | 是否显示增加按钮 | `Boolean` | `true` |
| show-minus | 是否显示减少按钮 | `Boolean` | `true` |
### Events

View File

@ -27,6 +27,14 @@ VantComponent({
step: {
type: null,
value: 1
},
showPlus: {
type: Boolean,
value: true
},
showMinus: {
type: Boolean,
value: true
}
},

View File

@ -3,6 +3,7 @@
<view class="van-stepper custom-class">
<view
class="minus-class {{ utils.bem('stepper__minus', { disabled: minusDisabled }) }}"
style="{{ showMinus ? '' : 'display: none;' }}"
hover-class="van-stepper__minus--hover"
hover-stay-time="70"
bind:tap="onMinus"
@ -20,6 +21,7 @@
/>
<view
class="plus-class {{ utils.bem('stepper__plus', { disabled: plusDisabled }) }}"
style="{{ showPlus ? '' : 'display: none;' }}"
hover-class="van-stepper__plus--hover"
hover-stay-time="70"
bind:tap="onPlus"