Merge pull request #2017 from JakeLaoyu/feat/Rate-add-touchable-prop

feat(Rate): add touchable prop
This commit is contained in:
Jake 2019-09-11 11:20:06 +08:00 committed by GitHub
commit 545ecbb679
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 0 deletions

View File

@ -39,6 +39,7 @@
color="#ee0a24"
void-color="#eee"
void-icon="star"
touchable="{{ false }}"
bind:change="onChange"
/>
</demo-block>

View File

@ -118,6 +118,7 @@ Page({
| readonly | 是否为只读状态 | *boolean* | `false` | - |
| disabled | 是否禁用评分 | *boolean* | `false` | - |
| disabled-color | 禁用时的颜色 | *string* | `#bdbdbd` | - |
| touchable | 是否可以通过滑动手势选择评分 | *boolean* | `true` | - |
### Events

View File

@ -44,6 +44,10 @@ VantComponent({
type: null,
observer: 'setGutterWithUnit'
},
touchable: {
type: Boolean,
value: true
}
},
data: {
@ -84,6 +88,9 @@ VantComponent({
},
onTouchMove(event: Weapp.TouchEvent) {
const { touchable } = this.data;
if (!touchable) return;
const { clientX, clientY } = event.touches[0];
this.getRect('.van-rate__icon', true).then(