update: 删除冗余代码

This commit is contained in:
xieyonghong 2023-04-11 11:28:19 +08:00
parent fb32cc9a38
commit a3fd4b32b6
1 changed files with 0 additions and 5 deletions

View File

@ -260,7 +260,6 @@ const initPage = async (newId: any) => {
await instanceStore.refresh(String(newId)); await instanceStore.refresh(String(newId));
getStatus(String(newId)); getStatus(String(newId));
list.value = [...initList]; list.value = [...initList];
console.log('watch', route.params?.id)
getDetail(); getDetail();
instanceStore.tabActiveKey = 'Info'; instanceStore.tabActiveKey = 'Info';
} }
@ -287,10 +286,6 @@ onMounted(() => {
getDetailFn(); getDetailFn();
}); });
const onBack = () => {
menuStory.jumpPage('device/Instance');
};
const onTabChange = (e: string) => { const onTabChange = (e: string) => {
instanceStore.tabActiveKey = e; instanceStore.tabActiveKey = e;
}; };