将行业热门话题洞察的需要修改成columns

This commit is contained in:
lq
2025-06-21 16:57:01 +08:00
29 changed files with 1312 additions and 150 deletions

View File

@ -10,7 +10,9 @@ const clickExit = () => {
};
const getMenus = async () => {
const res = await fetchMenusTree();
lists.value = res;
if (res.code == 200) {
lists.value = res.data;
}
};
onMounted(() => {
getMenus();