title: InputRating 评分 description: type: 0 group: null menuName: InputRating 评分 icon:

order: 37

基本用法

默认颜色

```schema: scope=”body” { “type”: “form”, “api”: “/api/mock2/form/saveForm”, “body”: [ { “type”: “input-rating”, “name”: “rating”, “label”: “评分”, “count”: 5, “value”: 3 } ] }

  1. 自定义颜色。支持各种颜色形式,如 CSS 预定义颜色,十六进制颜色,RGB 颜色,HSL 颜色。
  2. ```schema: scope="body"
  3. {
  4. "type": "form",
  5. "api": "/api/mock2/form/saveForm",
  6. "body": [
  7. {
  8. "type": "input-rating",
  9. "name": "rating",
  10. "label": "评分",
  11. "count": 5,
  12. "value": 3,
  13. "colors": {
  14. "1": "gray",
  15. "2": "#678f8d",
  16. "3": "rgb(119, 168, 141)",
  17. "4": "hsl(147, 22%, 56%)",
  18. "5": "#ff6670"
  19. }
  20. }
  21. ]
  22. }

半星

```schema: scope=”body” { “type”: “form”, “api”: “/api/mock2/form/saveForm”, “body”: [ { “type”: “input-rating”, “name”: “rating”, “label”: “评分”, “count”: 5, “value”: 3.5, “half”: true } ] }

  1. ## 带有文字
  2. ```schema: scope="body"
  3. {
  4. "type": "form",
  5. "api": "/api/mock2/form/saveForm",
  6. "body": [
  7. {
  8. "type": "input-rating",
  9. "name": "rating",
  10. "label": "评分",
  11. "count": 5,
  12. "value": 3,
  13. "texts": {
  14. "1": "很差",
  15. "2": "较差",
  16. "3": "一般",
  17. "4": "较好",
  18. "5": "很好"
  19. },
  20. "textClassName": "okde"
  21. }
  22. ]
  23. }

自定义字符

```schema: scope=”body” { “type”: “form”, “api”: “/api/mock2/form/saveForm”, “body”: [ { “type”: “input-rating”, “name”: “rating”, “label”: “评分”, “count”: 5, “value”: 3, “char”: “好” } ] }

  1. ## 只读
  2. ```schema: scope="body"
  3. {
  4. "type": "form",
  5. "api": "/api/mock2/form/saveForm",
  6. "body": [
  7. {
  8. "type": "input-rating",
  9. "name": "rating",
  10. "label": "评分",
  11. "count": 5,
  12. "value": 3.6,
  13. "half": true,
  14. "readOnly": true,
  15. "texts": {
  16. "5": "3.6"
  17. }
  18. }
  19. ]
  20. }

属性表

当做选择器表单项使用时,除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置

属性名 类型 默认值 说明
value number - 当前值
half boolean false 是否使用半星选择
count number 5 总星数
readOnly boolean false 只读
allowClear boolean true 是否允许再次点击后清除
colors string / object {'2': '#abadb1', '3': '#787b81', '5': '#ffa900' } 星星被选中的颜色。 若传入字符串,则只有一种颜色。若传入对象,可自定义分段,键名为分段的界限值,键值为对应的类名
inactiveColor string #e7e7e8 未被选中的星星的颜色
texts object - 星星被选中时的提示文字。可自定义分段,键名为分段的界限值,键值为对应的类名
textPosition right / left right 文字的位置
char string 自定义字符
className string - 自定义样式类名
charClassName string - 自定义字符类名
textClassName string - 自定义文字类名

事件表

当前组件会对外派发以下事件,可以通过onEvent来监听这些事件,并通过actions来配置执行的动作,在actions中可以通过event.data.xxx事件参数变量来获取事件产生的数据,详细请查看事件动作

事件名称 事件参数 说明
change event.data.value: number 评分值 分值变化时触发

动作表

当前组件对外暴露以下特性动作,其他组件可以通过指定actionType: 动作名称componentId: 该组件id来触发这些动作,动作配置可以通过args: {动作配置项名称: xxx}来配置具体的参数,详细请查看事件动作

动作名称 动作配置 说明
clear - 清空
reset - 将值重置为resetValue,若没有配置resetValue,则清空
setValue value: number 更新的值 更新数据