ElemeFE / element-react

Element UI
https://elemefe.github.io/element-react/index
MIT License
2.84k stars 443 forks source link

使用Cascader展开后会被caret-wrapper盖到 #668

Open fantasy9830 opened 6 years ago

fantasy9830 commented 6 years ago

Description

使用Cascader展开后会被caret-wrapper覆盖到

Additional Information

test

ghost commented 6 years ago

请问你的可以在本地运行源代码,这位大哥

fantasy9830 commented 6 years ago
import { Cascader, Table } from 'element-react';

class Test extends React.Component {
  constructor(props) {
    super(props);

    this.state = {
      list: [],
      columns: [
        {
          label: 'test1',
          prop: 'test1',
          sortable: true,
        },
        {
          label: 'test2',
          prop: 'test2',
          sortable: true,
        },
      ],
      options: [
        {
          value: 'aaa',
          label: 'aaa',
        },
        {
          value: 'bbb',
          label: 'bbb',
        },
        {
          value: 'ccc',
          label: 'ccc',
        },
      ],
    };
  }

  render() {
    return (
      <div style={{ width: '200px'}}>
        <Cascader
          options={this.state.options}
        />
        <Table columns={this.state.columns} data={this.props.list} border />
      </div>
    );
  }
}

export default Test;
ghost commented 6 years ago

我的意思是运行源代码,不是你使用它,就是我从git上clone下来开源项目的源代码,你可以在本地跑起来吗

fantasy9830 commented 6 years ago

可以

ghost commented 6 years ago

方便的话加下我QQ1194552431,我运行的时候一直报错,我想运行起来看看源代码,希望加QQ沟通下

ghost commented 6 years ago

6eb _ au3 na yo _p k

e1emeb0t commented 6 years ago

@fantasy9830 这个因为有些元素的z-index并不是计算出来的, 而是写死的静态值, 暂时可以通过覆盖style的方式hack一下.