diff --git a/.env b/.env index c2e5f60..9889029 100644 --- a/.env +++ b/.env @@ -5,7 +5,7 @@ VITE_APP_NAME=Nova - Admin # 路由模式 VITE_ROUTE_MODE = web # 权限路由模式: static | dynamic -VITE_AUTH_ROUTE_MODE=static +VITE_AUTH_ROUTE_MODE=dynamic # 设置登陆后跳转地址 VITE_HOME_PATH = /dashboard/workbench diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 546964b..a7cfe06 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,11 +15,12 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 + node-version: 20.x - uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 20.x - - run: npx changelogithub # or changelogithub@0.12 if ensure the stable result + - run: npx changelogithub env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/locales/en_US.json b/locales/en_US.json index 2e055e5..0a0177a 100644 --- a/locales/en_US.json +++ b/locales/en_US.json @@ -4,7 +4,8 @@ "confirm": "Confirm", "close": "Closure", "reload": "Refresh", - "choose": "Choose" + "choose": "Choose", + "navigate": "Navigate" }, "app": { "loginOut": "Login out", diff --git a/locales/zh_CN.json b/locales/zh_CN.json index 7320587..ff451b0 100644 --- a/locales/zh_CN.json +++ b/locales/zh_CN.json @@ -4,7 +4,8 @@ "cancel": "取消", "reload": "刷新", "close": "关闭", - "choose": "选择" + "choose": "选择", + "navigate": "切换" }, "app": { "loginOut": "退出登录", diff --git a/src/layouts/components/header/Search.vue b/src/layouts/components/header/Search.vue index e840ec2..e0dce1b 100644 --- a/src/layouts/components/header/Search.vue +++ b/src/layouts/components/header/Search.vue @@ -1,20 +1,44 @@ - + + CtrlK + + + - - - - + + + + + + + + - - + + + + + + {{ option.label }} + + {{ option.value }} + + + - + + + + + + + + {{ $t('common.choose') }} + + + + + {{ $t('common.navigate') }} + + + + {{ $t('common.close') }} + + + + + diff --git a/src/styles/index.css b/src/styles/index.css index c09a6a2..1402238 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -1,5 +1,6 @@ @import './reset.css'; @import './transition.css'; +@import './navie.css'; html, body, diff --git a/src/styles/navie.css b/src/styles/navie.css new file mode 100644 index 0000000..cae5ce5 --- /dev/null +++ b/src/styles/navie.css @@ -0,0 +1,3 @@ +.n-modal-mask { + backdrop-filter: blur(2px); +}