feat: 添加设置页面 可配置代理开关

This commit is contained in:
alger
2023-12-28 10:45:11 +08:00
parent c7c1143cb4
commit a2c49d354e
12 changed files with 173 additions and 16 deletions
+7
View File
@@ -175,6 +175,10 @@ const options = [
{
label: '退出登录',
key: 'logout'
},
{
label: '设置',
key: 'set'
}
]
@@ -208,6 +212,9 @@ const selectItem = async (key: any) => {
case 'login':
router.push("/login")
break;
case 'set':
router.push("/set")
break;
}
}