8a948318 by renchao@pashanhoo.com

style:字典

1 parent a13e8f4b
import { Message } from "element-ui";
export function removeTreeListItem (treeList, dictId, idName = 'bsmDict') {
export function removeTreeListItem (treeList, dictId, idName = 'dictid') {
if (!treeList || !treeList.length) {
return
}
......
......@@ -287,6 +287,7 @@
});
},
handleMinus (index, row) {
console.log(this.tableData, row.dictid, 'dictid');
removeTreeListItem(this.tableData, row.dictid, 'dictid');
this.tableData = judgeSort(this.tableData)
this.key++;
......