删除之前遗留的console (#2463)

* feat(axiosSuccess): 操作成功后根据传入提示模式进行相应

* fix(axiosRetry): 解决get重试请求返回的headers造成无法成功请求的问题

* fix(axiosRetry): 参数首字母小写

* fix(useDataSource): 解决deleteTableRecord删除树形表格的行记录时,无法删除,无法找到子节点的问题

* feat(useDataSource): 删除之前提交代码遗留的console
This commit is contained in:
mfish 2022-12-18 19:53:55 +08:00 committed by GitHub
parent 2387dcdc6d
commit ca487426a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -187,7 +187,6 @@ export function useDataSource(
return { index: i, data };
}
if (row.children?.length > 0) {
console.log(row.children, i);
const result = findRow(row.children, key);
if (result != null) {
return result;