feat: 行拖拽样式修改[JCJS-2307]
This commit is contained in:
parent
e84689ea91
commit
2cb8982d67
|
@ -275,7 +275,7 @@ var TableRow = function (_Component) {
|
|||
}
|
||||
}
|
||||
if (type) {
|
||||
currentObj && currentObj.setAttribute("style", "border-bottom:2px dashed rgb(30, 136, 229)");
|
||||
currentObj && currentObj.setAttribute("style", "border-bottom:2px solid #02B1FD");
|
||||
} else {
|
||||
currentObj && currentObj.setAttribute("style", "");
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ class Demo38 extends Component {
|
|||
columns={columns}
|
||||
data={data}
|
||||
rowDraggAble={true}
|
||||
useDragHandle={true}
|
||||
// useDragHandle={true}
|
||||
onDragRowStart={this.onDragRowStart}
|
||||
onDropRow={this.onDropRow}
|
||||
/>
|
||||
|
|
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
|
@ -312,7 +312,7 @@ class TableRow extends Component{
|
|||
}
|
||||
}
|
||||
if(type){
|
||||
currentObj && currentObj.setAttribute("style","border-bottom:2px dashed rgb(30, 136, 229)");
|
||||
currentObj && currentObj.setAttribute("style","border-bottom:2px solid #02B1FD");
|
||||
}else{
|
||||
currentObj && currentObj.setAttribute("style","");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue