bugfix:下拉条件失效的问题.
This commit is contained in:
parent
5d0f77b327
commit
75d3048adc
File diff suppressed because one or more lines are too long
|
@ -10247,4 +10247,12 @@ li.rc-time-picker-panel-select-option-disabled:hover {
|
|||
.demo25 .u-table-scroll .u-table-header {
|
||||
margin-right: 15px; }
|
||||
|
||||
th .drop-menu .uf {
|
||||
font-size: 12px;
|
||||
visibility: hidden;
|
||||
margin-left: 15px; }
|
||||
|
||||
th:hover .uf {
|
||||
visibility: visible; }
|
||||
|
||||
/*# sourceMappingURL=demo.css.map */
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -253,6 +253,7 @@ class TableHeader extends Component {
|
|||
data={selectDataSource}
|
||||
onChange={this.handlerFilterTextChange.bind(this, dataIndex)}
|
||||
onSelectDropdown={this.handlerFilterDropChange.bind(this, dataIndex)}
|
||||
filterDropdown={rows[1][index]['filterdropdown']}
|
||||
/>
|
||||
//日期
|
||||
case 'date':
|
||||
|
@ -262,6 +263,7 @@ class TableHeader extends Component {
|
|||
onClick={() => { }}
|
||||
onChange={this.handlerFilterTextChange.bind(this, dataIndex)}
|
||||
onSelectDropdown={this.handlerFilterDropChange.bind(this, dataIndex)}
|
||||
filterDropdown={rows[1][index]['filterdropdown']}
|
||||
/>
|
||||
default:
|
||||
//不匹配类型默认文本输入
|
||||
|
|
Loading…
Reference in New Issue