refactor: 更新API路径和ElementPlus配置

This commit is contained in:
wangqiao
2025-08-30 11:34:04 +08:00
parent dbc15f5f52
commit 048dd1fe65
3 changed files with 6 additions and 2 deletions

View File

@ -122,7 +122,7 @@
// getEditionsList()
// 获取面包屑
const {data: breadList} = await useAsyncData(`breadList-${props.type}-${props.id}-${props.groundId}-${Date.now()}`, async () => {
const {data: breadList} = await useAsyncData(`breadList-${props.type}-${props.id}-${query.value.projectType}-${Date.now()}`, async () => {
const res = await getDictTree({ type: props.type, id: query.value.projectType })
return res.data
})