| | |
| | | */ |
| | | |
| | | static rowClickHandler(row, CrudRef, lastIndex, setLastIndex, setSelectList) { |
| | | if (lastIndex === row.$index) { |
| | | /*if (lastIndex === row.$index) { |
| | | setSelectList(); |
| | | CrudRef.clearSelection(); |
| | | } else { |
| | | setSelectList(); |
| | | CrudRef.clearSelection(); |
| | | CrudRef.toggleRowSelection(row); |
| | | } |
| | | |
| | | }*/ |
| | | setSelectList(); |
| | | CrudRef.toggleSelection(); |
| | | CrudRef.toggleRowSelection(row);//选中当前行 |
| | | setLastIndex(row.$index); |
| | | } |
| | | |
| | |
| | | */ |
| | | |
| | | static isEmptyObject(obj) { |
| | | return Object.keys(obj).length === 0; |
| | | if(obj){ |
| | | return Object.keys(obj).length === 0; |
| | | }else { |
| | | return true; |
| | | } |
| | | } |
| | | |
| | | /** |