fix(Rate): support touch move and selected half star (#4195)

This commit is contained in:
nemo-shen 2021-05-08 09:38:03 +08:00 committed by GitHub
parent 1579f7cddd
commit 1292b7cfd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -85,8 +85,9 @@ VantComponent({
getAllRect(this, '.van-rate__icon').then((list) => {
const target = list
.sort((item) => item.right - item.left)
.sort((cur, next) => cur.dataset.score - next.dataset.score)
.find((item) => clientX >= item.left && clientX <= item.right);
if (target != null) {
this.onSelect({
...event,