EC_QuotaSelect.md 1.78 KB
Newer Older
涂茜's avatar
涂茜 committed
1
---
涂茜's avatar
涂茜 committed
2
title: EC_QuotaSelect - 指标选择
涂茜's avatar
涂茜 committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
nav:
  title: 业务组件
  path: /extend-components
group:
  path: /
---

# EC-QuotaSelect 指标选择

基础业务组件

- 允许对分类指标进行选择
- 允许限制选择最大指标数
- 允许搜索指标

## 何时使用

- 在指标选择时。

## 代码演示

<code src="./demos/Basic.tsx">

## API

指标选择按钮 props 参考 https://ant.design/components/button-cn/#API

已选指标树 props 参考 https://ant.design/components/tree-cn/#API

| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
| buttonProps | 指标选择按钮 | object | { } |
| width | 模态框宽度 | number | 900 |
| title | 模态框标题 | string | 选择显示字段 |
| cancelText | 模态框取消按钮文字 | string | 取消选择 |
| okText | 模态框确认按钮文字 | string | 确定 |
| placeholder | 搜索框占位符 | string | 搜索关键词 |
| searchPrefix | 搜索框前置图标 | ReactNode | SearchOutlined |
| maximum`必需` | 最多可选择指标数量 | number | 0 |
| deviceList`必需` | 设备列表数据源 | array | [ ] |
| confList `必需` | 设备配置数据源 | array | [ ] |
| user | 用户登录名 | string | null |
| pointType`必需` | 指标类型 | string | cardPoints |
| treeProps | 已选指标树 props | object | { } |
| onSelect | 模态框点击确定,选中的数据 | function(device, selectKey, selectList){ } | - |
| onModalCancel | 点击模态框取消按钮的回调 | function(value){ } | - |
| onModalOk | 模态框点击确定回调 | function(value){ } | - |
| onModalClose | 模态框点击关闭回调 | function(value){ } | - |
| quotaListService`必需` | 获取指标列表的服务 | promise | - |
| updateDeviceConfService`user存在时必需` | 更新设备配置的服务 | promise | - |