mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
fix: v4.3.2 bug fixed
This commit is contained in:
parent
9168cd876e
commit
711be2006b
1
.gitignore
vendored
1
.gitignore
vendored
@ -27,4 +27,3 @@ visualizer.*
|
|||||||
yarn-*.*
|
yarn-*.*
|
||||||
yarn.*
|
yarn.*
|
||||||
pnpm.*
|
pnpm.*
|
||||||
pnpm-lock.yaml
|
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
## 4.3.2
|
## 4.3.2
|
||||||
|
|
||||||
|
升级 `vue` 版本至最新 `v3.3.8`。
|
||||||
|
|
||||||
|
尽可能的暴露了一些模板专属 `hooks`,便于开发者使用。
|
||||||
|
|
||||||
### Feats
|
### Feats
|
||||||
|
|
||||||
- `useMenuTag` 所有关闭方法,都支持了多种参数类型传递方式。并且 `closeRight`, `closeLeft` 方法能够正确的关闭标签页
|
- `useMenuTag` 所有关闭方法,都支持了多种参数类型传递方式。并且 `closeRight`, `closeLeft` 方法能够正确的关闭标签页
|
||||||
@ -12,6 +16,7 @@
|
|||||||
### Fixes
|
### Fixes
|
||||||
|
|
||||||
- 修复 LayoutContent 全屏时候在手机浏览器打开高度显示不正确问题
|
- 修复 LayoutContent 全屏时候在手机浏览器打开高度显示不正确问题
|
||||||
|
- 修复 MenuTag 菜单报错问题
|
||||||
|
|
||||||
## 4.3.1
|
## 4.3.1
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
"pinia": "^2.1.4",
|
"pinia": "^2.1.4",
|
||||||
"pinia-plugin-persistedstate": "^3.1.0",
|
"pinia-plugin-persistedstate": "^3.1.0",
|
||||||
"print-js": "^1.6.0",
|
"print-js": "^1.6.0",
|
||||||
"vue": "^3.3.6",
|
"vue": "^3.3.8",
|
||||||
"vue-hooks-plus": "1.8.5",
|
"vue-hooks-plus": "1.8.5",
|
||||||
"vue-i18n": "^9.2.2",
|
"vue-i18n": "^9.2.2",
|
||||||
"vue-router": "^4.2.4",
|
"vue-router": "^4.2.4",
|
||||||
|
7761
pnpm-lock.yaml
generated
Normal file
7761
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -9,7 +9,7 @@
|
|||||||
* @remark 今天也是元气满满撸代码的一天
|
* @remark 今天也是元气满满撸代码的一天
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { setVariable } from '@/global-variable/index'
|
import { setVariable, getVariableToRefs } from '@/global-variable/index'
|
||||||
import { LAYOUT_CONTENT_REF } from '@/app-config/routerConfig'
|
import { LAYOUT_CONTENT_REF } from '@/app-config/routerConfig'
|
||||||
import { addStyle, removeStyle } from '@/utils/element'
|
import { addStyle, removeStyle } from '@/utils/element'
|
||||||
import { unrefElement } from '@/utils/vue/index'
|
import { unrefElement } from '@/utils/vue/index'
|
||||||
@ -30,6 +30,15 @@ export function useMainPage() {
|
|||||||
setTimeout(() => setVariable('globalMainLayoutLoad', true), wait)
|
setTimeout(() => setVariable('globalMainLayoutLoad', true), wait)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* 当前 LayoutContent 是处于否全屏状态
|
||||||
|
* - true: 全屏
|
||||||
|
* - false: 非全屏
|
||||||
|
*/
|
||||||
|
const isLayoutContentMaximized = () =>
|
||||||
|
computed(() => getVariableToRefs('layoutContentMaximize').value)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param full 是否网页全屏内容区域
|
* @param full 是否网页全屏内容区域
|
||||||
@ -57,5 +66,6 @@ export function useMainPage() {
|
|||||||
return {
|
return {
|
||||||
reload,
|
reload,
|
||||||
maximize,
|
maximize,
|
||||||
|
isLayoutContentMaximized,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ $menuTagWrapperWidth: 76px;
|
|||||||
border-bottom: solid 1px var(--n-border-color);
|
border-bottom: solid 1px var(--n-border-color);
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 4px 0;
|
padding: 6px 0;
|
||||||
|
|
||||||
& .menu-tag-space {
|
& .menu-tag-space {
|
||||||
width: calc(100% - $space * 2);
|
width: calc(100% - $space * 2);
|
||||||
|
@ -269,7 +269,8 @@ export default defineComponent({
|
|||||||
} else {
|
} else {
|
||||||
const isRoot = moreOptions.value[currentContextmenuIndex]
|
const isRoot = moreOptions.value[currentContextmenuIndex]
|
||||||
|
|
||||||
if (isRoot.key === 'closeCurrentPage') {
|
// 避免 isRoot 为 undefined
|
||||||
|
if (isRoot?.key === 'closeCurrentPage') {
|
||||||
setMoreOptionsDisabled('closeCurrentPage', true)
|
setMoreOptionsDisabled('closeCurrentPage', true)
|
||||||
} else {
|
} else {
|
||||||
setMoreOptionsDisabled('closeCurrentPage', false)
|
setMoreOptionsDisabled('closeCurrentPage', false)
|
||||||
@ -385,9 +386,11 @@ export default defineComponent({
|
|||||||
/** 动态设置关闭按钮是否可操作 */
|
/** 动态设置关闭按钮是否可操作 */
|
||||||
watch(
|
watch(
|
||||||
() => actionState.actionDropdownShow,
|
() => actionState.actionDropdownShow,
|
||||||
() => {
|
(ndata) => {
|
||||||
// 使用节流函数,避免右键菜单闪烁问题
|
// 使用节流函数,避免右键菜单闪烁问题
|
||||||
throttle(setDisabledAccordionToIndex, 100)?.()
|
if (ndata) {
|
||||||
|
throttle(setDisabledAccordionToIndex, 100)?.()
|
||||||
|
}
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -470,7 +473,6 @@ export default defineComponent({
|
|||||||
{this.getMenuTagOptions.map((curr, idx) => (
|
{this.getMenuTagOptions.map((curr, idx) => (
|
||||||
<NTag
|
<NTag
|
||||||
key={curr.key}
|
key={curr.key}
|
||||||
size="large"
|
|
||||||
strong
|
strong
|
||||||
closable={curr.closeable}
|
closable={curr.closeable}
|
||||||
onClose={this.closeCurrentMenuTag.bind(this, idx)}
|
onClose={this.closeCurrentMenuTag.bind(this, idx)}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user