amis2/docs/zh-CN/components/form/rating.md

36 lines
894 B
Markdown
Raw Normal View History

2020-07-28 10:03:53 +08:00
---
title: Rating 评分
description:
2020-07-28 10:03:53 +08:00
type: 0
group: null
menuName: Rating 评分
icon:
2020-07-28 10:03:53 +08:00
order: 37
---
2020-07-28 10:03:53 +08:00
## 基本用法
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
2021-01-19 10:20:09 +08:00
"api": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/mock2/form/saveForm",
2020-07-28 10:03:53 +08:00
"controls": [
{
"type": "rating",
"name": "rating",
"label": "评分"
}
]
}
```
## 属性表
当做选择器表单项使用时,除了支持 [普通表单项属性表](./formitem#%E5%B1%9E%E6%80%A7%E8%A1%A8) 中的配置以外,还支持下面一些配置
| 属性名 | 类型 | 默认值 | 说明 |
| -------- | --------- | ------- | ------------------ |
| half | `boolean` | `false` | 是否使用半星选择 |
| count | `number` | `5` | 共有多少星可供选择 |
| readOnly | `boolean` | `false` | 只读 |