diff --git a/pages/componentsB/rate/index.vue b/pages/componentsB/rate/index.vue index 04827e2e..59874e8f 100644 --- a/pages/componentsB/rate/index.vue +++ b/pages/componentsB/rate/index.vue @@ -74,7 +74,7 @@ }, inactiveIcon() { let icon = this.customIcon ? 'heart' : 'star'; - return this.plain ? icon : icon + '-fill' + return this.disabled ? icon : this.plain ? icon : icon + '-fill' } }, methods: { diff --git a/uview-ui/components/u-rate/u-rate.vue b/uview-ui/components/u-rate/u-rate.vue index 17eb3a87..37549b21 100644 --- a/uview-ui/components/u-rate/u-rate.vue +++ b/uview-ui/components/u-rate/u-rate.vue @@ -4,7 +4,7 @@