This commit is contained in:
yziiy
2025-10-23 18:05:08 +08:00
parent 865ddbad43
commit be95e77f30
2 changed files with 61 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ export function useData() {
loading.value = true;
const { data, code } = await getConfigTypeList({});
if (code) {
tableList.value = data
tableList.value = data.filter(ele => { return ele.id !== 11 })
activeId.value = data[0].id
getInfo(activeId.value)
}