重构云文件管理系统

This commit is contained in:
2026-04-02 23:35:48 +08:00
parent ceb6c8258c
commit 38bcbd6ed2
9 changed files with 48 additions and 51 deletions

View File

@@ -1,4 +1,4 @@
<template>
<template>
<el-dialog
v-model="visible"
title="共享文件"
@@ -65,8 +65,8 @@ const userList = ref([])
const loadUsers = async () => {
try {
const res = await getUsers()
userList.value = res.data || []
const data = await getUsers()
userList.value = data || []
} catch (e) {
ElMessage.error('获取用户列表失败')
}