perf: 优化接口类型

This commit is contained in:
xiaoxian521
2022-08-18 18:35:09 +08:00
parent d6a329a63c
commit a983575b6d
7 changed files with 37 additions and 28 deletions

View File

@@ -64,7 +64,7 @@ watch(searchValue, val => {
onMounted(async () => {
let { data } = await getDeptList();
treeData.value = handleTree(data);
treeData.value = handleTree(data as any);
});
</script>