diff --git a/src/layouts/components/tab/TabBar.vue b/src/layouts/components/tab/TabBar.vue index 4753fe7..71579c8 100644 --- a/src/layouts/components/tab/TabBar.vue +++ b/src/layouts/components/tab/TabBar.vue @@ -107,7 +107,7 @@ function onClickoutside() { @@ -125,7 +125,7 @@ function onClickoutside() { v-for="item in tabStore.tabs" :key="item.path" closable - :name="item.path as string" + :name="item.path" @click="handleTab(item)" @contextmenu="handleContextMenu($event, item)" > @@ -150,5 +150,3 @@ function onClickoutside() { /> - -./DropTabs.vue diff --git a/src/styles/navie.css b/src/styles/navie.css index cae5ce5..4105be4 100644 --- a/src/styles/navie.css +++ b/src/styles/navie.css @@ -1,3 +1,8 @@ .n-modal-mask { backdrop-filter: blur(2px); } + +/* 解决tabs组件不贴合下边缘问题 */ +.v-x-scroll { + height: 100%; +} diff --git a/src/typings/api/login.d.ts b/src/typings/api/login.d.ts index 9de2f9f..9692879 100644 --- a/src/typings/api/login.d.ts +++ b/src/typings/api/login.d.ts @@ -7,7 +7,7 @@ namespace Api { /** 用户id */ id: number /** 用户角色类型 */ - role: RoleType + role: Entity.RoleType /** 访问toekn */ accessToken: string /** 刷新toekn */ diff --git a/src/views/setting/account/index.vue b/src/views/setting/account/index.vue index 22fcada..38ea4b3 100644 --- a/src/views/setting/account/index.vue +++ b/src/views/setting/account/index.vue @@ -1,4 +1,4 @@ -