Skip to content

Commit

Permalink
使用代码生成器生成树的结构,批量删除时报错,在很老的jeecg,vue2版本就在报错了 #6043
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangdaiscott committed Apr 12, 2024
1 parent 7b06715 commit 200adb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
* 批量删除事件
*/
async function batchHandleDelete() {
const ids = selectedRowKeys.value.filter(item => !item.includes('loading'))
const ids = selectedRowKeys.value.filter(item => !item.includes('loadChild'))
await batchDelete${entityName}({id: ids}, importSuccess);
}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
* 批量删除事件
*/
async function batchHandleDelete() {
const ids = selectedRowKeys.value.filter((item) => !item.includes('loading'));
const ids = selectedRowKeys.value.filter((item) => !item.includes('loadChild'));
await batchDelete${entityName}({ id: ids }, success);
}

Expand Down

0 comments on commit 200adb8

Please sign in to comment.