#### 组件名称
gov-rate

#### 解释：
评分组件

#### 属性说明：
|属性名 | 类型 | 必填 | 默认值 |说明 |
|---|---|---|---|---|
|count |Number |否|5|星星数量|
|value |Number |否|0|当前点亮星星数量|
|icon |Object |否|[object Object]|星星icon配置 可配置 color颜色 size大小|
|disabled |Boolean |否|false|是否禁用|
|text |String |否||自定义右侧文案|
|showText |Boolean |否|true|是否展示右侧文案|
|textArr |Array |否|[&#39;非常差&#39;, &#39;差&#39;, &#39;一般&#39;, &#39;好&#39;, &#39;非常好&#39;]|自定义每项的提示信息|

#### 代码示例
swan:
```
<view class="preview-caption">评分</view>
    <gov-rate
        count="{{ 5 }}"
        value="{{ 3.5 }}"
        disabled="{{ false }}"
        show-text="{{ true }}"
        text-arr="{{ textArr }}"
        bindchange="handleChange"
    ></gov-rate><view class="preview-caption">禁用</view>
    <gov-rate
        count="{{ 5 }}"
        value="{{ 3 }}"
        disabled="{{ true }}"
        show-text="{{ true }}"
        text-arr="{{ textArr }}"
    ></gov-rate><view class="preview-caption">自定义样式</view>
    <gov-rate
        count="{{ 5 }}"
        disabled="{{ false }}"
        show-text="{{ true }}"
        icon-color="#80acd8"
        text-arr="{{ textArr }}"
        gov-rate="gov-rate"
        gov-rate-text="gov-rate-text"
    ></gov-rate>
```
js:
```
Page({
    data: {
        textArr: ['1星', '2星', '3星', '4星', '5星']
    },
    handleChange(e) {
        console.log(e);
        console.log(e.detail.newVal, e.detail.oldVal);
    }
});

```
css:
```
.gov-rate-text {
    color: #8b8abd !important;
    font-size: 14px !important;
}
```