mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-student.git
synced 2025-12-09 19:06:48 +08:00
fix:路径图列表显示
This commit is contained in:
@@ -183,7 +183,11 @@ const dates = ref([])
|
||||
|
||||
const { data } = usePage(ROUTER_LIST, { pageSize: 60 }, (e) => {
|
||||
console.log("我请求成功了吗", e);
|
||||
dates.value = e.data;
|
||||
let cdata = []
|
||||
for(let i=0;i<e.data.length;i++){
|
||||
cdata.push(e.data[i].routerInfo)
|
||||
}
|
||||
dates.value = cdata;
|
||||
isLoading.value = false;
|
||||
});
|
||||
const router = useRouter();
|
||||
|
||||
Reference in New Issue
Block a user