const defaultCheckedKeys = ['116310951904638888037180'];

    console.log(positionList, 'positionList');

    return (

      <div style={{ display: 'flex', minHeight: 700 }}>

        <Card bordered={false} style={{ width: 250, height: '100%', borderRadius: '2px' }}>

          <Tree

            defaultSelectedKeys={defaultCheckedKeys}

            showLine

            switcherIcon={<Icon type="down" />}

            onSelect={this.onPositionSelect}

          >

            {positionList.map((item) => (

              <TreeNode title={item.name} key={item.code} />

            ))}

          </Tree>

        </Card>