{this.props.title}
{this.props.title !== "未分类" &&
{!disabled &&
{
this.handleEditGroupIconClick(this.props.title);
}}
/>
{
this.handleDeleteGroupIconClick();
}}
/>
}
}
{
sortedIndex !== 0 &&
this.props.onUpgo(sortedIndex)}
title="向上移动"
style={{
marginRight: 10,
cursor: "pointer"
}}
/>
}
{
sortedIndex !== toJS(itemGroups).length - 1 &&
this.props.onDowngo(sortedIndex)}
title="向下移动"
style={{
cursor: "pointer"
}}
/>
}
{
!disabled &&
}
{
this.handleTiggleContent();
}}
/>
{this.state.showContent &&
({
index,
moveRow: record
})}
pagination={false}
onDrop={datas => this.props.onDataSourceChange(datas)}
draggable={true}
/>}
{this.state.addItemVisible &&
{
this.setState({ addItemVisible: false });
}}
/>}
{formalModalVisible &&
{
this.handleSaveFormal(data);
}}
onCancel={() =>
this.setState({
formalModalVisible: false
})}
/>}
{/* 编辑分类名称 */}
{addCategoryVisible &&
{
this.handleUpdateCategorySave(value);
}}
visible={addCategoryVisible}
onCancel={() => {
this.setState({ addCategoryVisible: false });
}}
/>}
);
}
}