From 187c26832c7ff7b99c7e7f4f896b15e18392bb6a Mon Sep 17 00:00:00 2001 From: JuneOY <75666139+JuneOY@users.noreply.github.com> Date: Sun, 28 Apr 2024 10:03:47 +0800 Subject: [PATCH 1/5] fix: typo (#12) * updata plugin fetch layout * fix:typo --- src/router/guard.ts | 4 +- src/router/routes.static.ts | 2 +- src/service/api/test.ts | 6 +- src/typings/route.d.ts | 2 +- src/views/demo/QRCode/index.vue | 2 +- src/views/demo/fetch/components/Get.vue | 4 +- .../demo/fetch/components/UseRequest.vue | 8 +- src/views/plugin/fetch/index.vue | 249 ++++++++++++++++++ .../setting/menu/components/TableModal.vue | 8 +- 9 files changed, 267 insertions(+), 18 deletions(-) create mode 100644 src/views/plugin/fetch/index.vue diff --git a/src/router/guard.ts b/src/router/guard.ts index 9314fca..30cfcb4 100644 --- a/src/router/guard.ts +++ b/src/router/guard.ts @@ -11,8 +11,8 @@ export function setupRouterGuard(router: Router) { router.beforeEach(async (to, from, next) => { // 判断是否是外链,如果是直接打开网页并拦截跳转 - if (to.meta.herf) { - window.open(to.meta.herf) + if (to.meta.href) { + window.open(to.meta.href) return false } // 开始 loadingBar diff --git a/src/router/routes.static.ts b/src/router/routes.static.ts index b406b5f..2aaca6d 100644 --- a/src/router/routes.static.ts +++ b/src/router/routes.static.ts @@ -260,7 +260,7 @@ export const staticRoutes: AppRoute.RowRoute[] = [ 'meta.title': 'VueUse(外链)', 'meta.requiresAuth': true, 'meta.icon': 'logos:vueuse', - 'meta.herf': 'https://vueuse.org/guide/', + 'meta.href': 'https://vueuse.org/guide/', 'componentPath': 'null', 'id': 27, 'pid': 24, diff --git a/src/service/api/test.ts b/src/service/api/test.ts index c224885..0d76658 100644 --- a/src/service/api/test.ts +++ b/src/service/api/test.ts @@ -1,7 +1,7 @@ import { blankInstance, request } from '../http' /* get方法测试 */ -export function fetachGet(params?: any) { +export function fetchGet(params?: any) { return request.Get('/getAPI', { params }) } @@ -53,7 +53,7 @@ export function dictData() { export function getBlob(url: string) { const methodInstance = blankInstance.Get(url) methodInstance.meta = { - // 标识为bolb数据 + // 标识为blob数据 isBlob: true, } return methodInstance @@ -66,7 +66,7 @@ export function downloadFile(url: string) { enableDownload: true, }) methodInstance.meta = { - // 标识为bolb数据 + // 标识为blob数据 isBlob: true, } return methodInstance diff --git a/src/typings/route.d.ts b/src/typings/route.d.ts index e2046dc..d2de6e4 100644 --- a/src/typings/route.d.ts +++ b/src/typings/route.d.ts @@ -18,7 +18,7 @@ declare namespace AppRoute { /* 菜单排序。 */ order?: number /* 嵌套外链 */ - herf?: string + href?: string /** 当前路由不在左侧菜单显示,但需要高亮某个菜单的情况 */ activeMenu?: string /** 当前路由是否会被添加到Tab中 */ diff --git a/src/views/demo/QRCode/index.vue b/src/views/demo/QRCode/index.vue index c78d1f4..16a19a3 100644 --- a/src/views/demo/QRCode/index.vue +++ b/src/views/demo/QRCode/index.vue @@ -5,7 +5,7 @@ const text = ref('nova-admin') - + - + From 61bbdedec1c704f61df25ebaa0a9edd9f3874972 Mon Sep 17 00:00:00 2001 From: chansee97 Date: Sun, 28 Apr 2024 10:06:58 +0800 Subject: [PATCH 2/5] fix: delete `plugin/fetch` --- src/views/plugin/fetch/index.vue | 249 ------------------------------- 1 file changed, 249 deletions(-) delete mode 100644 src/views/plugin/fetch/index.vue diff --git a/src/views/plugin/fetch/index.vue b/src/views/plugin/fetch/index.vue deleted file mode 100644 index eb01d36..0000000 --- a/src/views/plugin/fetch/index.vue +++ /dev/null @@ -1,249 +0,0 @@ - - - - - From 1ccc3f371ac3bd933a6e501624d9ca937b142d1b Mon Sep 17 00:00:00 2001 From: chansee97 Date: Sun, 5 May 2024 16:21:07 +0800 Subject: [PATCH 3/5] feat: perfect search modal --- locales/en_US.json | 3 +- locales/zh_CN.json | 3 +- src/layouts/components/header/Search.vue | 184 ++++++++++++++++++++--- src/styles/index.css | 1 + src/styles/navie.css | 3 + 5 files changed, 170 insertions(+), 24 deletions(-) create mode 100644 src/styles/navie.css 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..35b0146 100644 --- a/src/layouts/components/header/Search.vue +++ b/src/layouts/components/header/Search.vue @@ -1,20 +1,44 @@ 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); +} From 1387db71bcac55fde934edc8f3c1f4212a440490 Mon Sep 17 00:00:00 2001 From: chansee97 Date: Sun, 5 May 2024 16:50:57 +0800 Subject: [PATCH 4/5] fix: update `relaease` node version --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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}} From 8ae6acd62d0c4c982d44a9a09022e9acbec3caef Mon Sep 17 00:00:00 2001 From: chansee97 Date: Mon, 6 May 2024 10:38:25 +0800 Subject: [PATCH 5/5] fix: modify search modal height --- .env | 2 +- src/layouts/components/header/Search.vue | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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/src/layouts/components/header/Search.vue b/src/layouts/components/header/Search.vue index 35b0146..e0dce1b 100644 --- a/src/layouts/components/header/Search.vue +++ b/src/layouts/components/header/Search.vue @@ -134,7 +134,7 @@ function handleEnter() { +
- +