fix: v4.3.2 bug fixed

This commit is contained in:
XiaoDaiGua-Ray 2023-11-15 10:07:34 +08:00
parent 9168cd876e
commit 711be2006b
7 changed files with 7785 additions and 8 deletions

1
.gitignore vendored
View File

@ -27,4 +27,3 @@ visualizer.*
yarn-*.*
yarn.*
pnpm.*
pnpm-lock.yaml

View File

@ -2,6 +2,10 @@
## 4.3.2
升级 `vue` 版本至最新 `v3.3.8`
尽可能的暴露了一些模板专属 `hooks`,便于开发者使用。
### Feats
- `useMenuTag` 所有关闭方法,都支持了多种参数类型传递方式。并且 `closeRight`, `closeLeft` 方法能够正确的关闭标签页
@ -12,6 +16,7 @@
### Fixes
- 修复 LayoutContent 全屏时候在手机浏览器打开高度显示不正确问题
- 修复 MenuTag 菜单报错问题
## 4.3.1

View File

@ -38,7 +38,7 @@
"pinia": "^2.1.4",
"pinia-plugin-persistedstate": "^3.1.0",
"print-js": "^1.6.0",
"vue": "^3.3.6",
"vue": "^3.3.8",
"vue-hooks-plus": "1.8.5",
"vue-i18n": "^9.2.2",
"vue-router": "^4.2.4",

7761
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,7 @@
* @remark
*/
import { setVariable } from '@/global-variable/index'
import { setVariable, getVariableToRefs } from '@/global-variable/index'
import { LAYOUT_CONTENT_REF } from '@/app-config/routerConfig'
import { addStyle, removeStyle } from '@/utils/element'
import { unrefElement } from '@/utils/vue/index'
@ -30,6 +30,15 @@ export function useMainPage() {
setTimeout(() => setVariable('globalMainLayoutLoad', true), wait)
}
/**
*
* LayoutContent
* - true:
* - false:
*/
const isLayoutContentMaximized = () =>
computed(() => getVariableToRefs('layoutContentMaximize').value)
/**
*
* @param full
@ -57,5 +66,6 @@ export function useMainPage() {
return {
reload,
maximize,
isLayoutContentMaximized,
}
}

View File

@ -6,7 +6,7 @@ $menuTagWrapperWidth: 76px;
border-bottom: solid 1px var(--n-border-color);
display: flex;
align-items: center;
padding: 4px 0;
padding: 6px 0;
& .menu-tag-space {
width: calc(100% - $space * 2);

View File

@ -269,7 +269,8 @@ export default defineComponent({
} else {
const isRoot = moreOptions.value[currentContextmenuIndex]
if (isRoot.key === 'closeCurrentPage') {
// 避免 isRoot 为 undefined
if (isRoot?.key === 'closeCurrentPage') {
setMoreOptionsDisabled('closeCurrentPage', true)
} else {
setMoreOptionsDisabled('closeCurrentPage', false)
@ -385,9 +386,11 @@ export default defineComponent({
/** 动态设置关闭按钮是否可操作 */
watch(
() => actionState.actionDropdownShow,
() => {
(ndata) => {
// 使用节流函数,避免右键菜单闪烁问题
throttle(setDisabledAccordionToIndex, 100)?.()
if (ndata) {
throttle(setDisabledAccordionToIndex, 100)?.()
}
},
)
@ -470,7 +473,6 @@ export default defineComponent({
{this.getMenuTagOptions.map((curr, idx) => (
<NTag
key={curr.key}
size="large"
strong
closable={curr.closeable}
onClose={this.closeCurrentMenuTag.bind(this, idx)}