# @beisen-platform/selected-list

Latest version **1.0.4-rc.1** (published 2019-04-30) · ISC license · 0 weekly downloads

## Install

```sh
npm install @beisen-platform/selected-list
pnpm add @beisen-platform/selected-list
yarn add @beisen-platform/selected-list
bun add @beisen-platform/selected-list
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4-rc.1 |
| Published | 2019-04-30 |
| First published | 2018-11-29 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 35 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | beisen |
| Maintainers | beisencorp |
| Keywords | beisen, react-component, es6 |

## Links

- npm: https://www.npmjs.com/package/@beisen-platform/selected-list
- Repository: http://gitlab.beisencorp.com/ux-cnpm/ux-selected-list
- npm.io page: https://npm.io/package/@beisen-platform/selected-list

## Dependencies (2)

- [@beisen-platform/common-func](https://npm.io/package/@beisen-platform/common-func.md)
- [@beisen-platform/react-icons](https://npm.io/package/@beisen-platform/react-icons.md)

## Recent versions

- 1.0.4-rc.1 (latest) — 2019-04-30
- 1.0.4 — 2019-03-15
- 1.0.3 — 2018-11-29

## README

# ux-selected-list使用说明

## 项目运行

1. cnpm install 或 npm install cnpm使用教程

2. npm run dev （开发环境打包 port:8080）

3. npm run test （测试用例）

4. npm run build （生产环境打包）

## ux-selected-list参数
```javascript  
  {
      totalCount: 1,//数据总数
      hasCount: 1,//选择数据总数
      openCount: true, //是否显示 选择数据总数／数据总数
      titleText: "已选择",//组件标题
      nullText: "请在左侧选择",//组件未选定数据时显示文本
      resultsData: [{
        name: '测试名称',
        pname: '测试数据'
      },{
        name: '测试名称',
        pname: '测试数据'
      }],
      clearResultsData: self.clearResultsData //清除当前已选数据，self=this在constructor中声明
  }
```
## ux-selected-list调用方法

1.安装npm组件包

```
npm install @beisen/ux-selected-list --save-dev
```

2.引用组件

  ```
import SelectedList from "@beisen/ux-selected-list"
  ```
3.传入参数

  该参数为上述参数，传入方式使用: {...参数}

  ```javascript
  class Demo extends Component {
  constructor(props) {
   super(props)
    let self = this;
    this.state = {
      totalCount: 1,//数据总数
      hasCount: 1,//选择数据总数
      openCount: true, //是否显示 选择数据总数／数据总数
     titleText: "已选择",//组件标题
      nullText: "请在左侧选择",//组件未选定数据时显示文本
      resultsData: [{
        name: '测试名称',
        pname: '测试数据'
      },{
        name: '测试名称',
        pname: '测试数据'
      }],
      clearResultsData: self.clearResultsData //清除当前已选数据，self=this在constructor中声明
    }
  }
  clearResultsData = index => {
    if(index==undefined) {
    this.setState({resultsData: []})
    } else {
      let _resultsData = this.state.resultsData;
      let _hasCount = this.state.hasCount;
      // if(_hasCount == 0) return;
      _resultsData.splice(index, 1);
      _hasCount = _hasCount - 1;
      this.setState({resultsData: _resultsData, hasCount: _hasCount});
    }
  }
  render() {
   return (
   		<div >
        <Selected_List {...this.state}  />
      </div >
    )
  }
}
render(<Demo />, document.getElementById('content'))
  ```

---
_Source: https://npm.io/package/@beisen-platform/selected-list · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
