【代码评审】IoT:场景联动的 review

This commit is contained in:
YunaiV
2025-03-30 10:18:33 +08:00
parent 30c9f0b872
commit 782337952d
12 changed files with 28 additions and 33 deletions

View File

@@ -134,7 +134,7 @@ const userList = ref<UserApi.UserVO[]>([]) // 用户列表
const getList = async () => {
loading.value = true
try {
const data = await DeptApi.getDeptPage(queryParams)
const data = await DeptApi.getDeptList(queryParams)
list.value = handleTree(data)
} finally {
loading.value = false