Skip to content

Commit 1170a94

Browse files
committed
ep-admin: fix: 修复已知问题
0a6f3066 kailong321200875 <[email protected]> on 2023/4/12 at 10:20 AM
1 parent 9fba288 commit 1170a94

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@wangeditor/editor-for-vue": "^5.1.10",
3939
"@zxcvbn-ts/core": "^2.2.1",
4040
"animate.css": "^4.1.1",
41-
"axios": "^1.3.4",
41+
"axios": "^1.3.5",
4242
"benz-amr-recorder": "^1.1.5",
4343
"bpmn-js-token-simulation": "^0.10.0",
4444
"camunda-bpmn-moddle": "^7.0.1",
@@ -48,16 +48,16 @@
4848
"diagram-js": "^11.6.0",
4949
"echarts": "^5.4.1",
5050
"echarts-wordcloud": "^2.1.0",
51-
"element-plus": "2.3.1",
51+
"element-plus": "2.3.3",
5252
"fast-xml-parser": "^4.1.3",
5353
"highlight.js": "^11.7.0",
54-
"intro.js": "^6.0.0",
54+
"intro.js": "^7.0.1",
5555
"jsencrypt": "^3.3.2",
5656
"lodash-es": "^4.17.21",
5757
"min-dash": "^4.0.0",
5858
"mitt": "^3.0.0",
5959
"nprogress": "^0.2.0",
60-
"pinia": "^2.0.33",
60+
"pinia": "^2.0.34",
6161
"qrcode": "^1.5.1",
6262
"qs": "^6.11.1",
6363
"steady-xml": "^0.1.0",

src/layout/components/AppView.vue

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,17 @@ const getCaches = computed((): string[] => {
2121
<template>
2222
<section
2323
:class="[
24-
'p-[var(--app-content-padding)] w-[100%] bg-[var(--app-contnet-bg-color)] dark:bg-[var(--el-bg-color)]',
24+
'p-[var(--app-content-padding)] w-[100%] bg-[var(--app-content-bg-color)] dark:bg-[var(--el-bg-color)]',
2525
{
2626
'!min-h-[calc(100%-var(--app-footer-height))]':
27-
fixedHeader && (layout === 'classic' || layout === 'topLeft') && footer,
27+
((fixedHeader && (layout === 'classic' || layout === 'topLeft')) || layout === 'top') &&
28+
footer,
2829
2930
'!min-h-[calc(100%-var(--tags-view-height)-var(--top-tool-height)-var(--app-footer-height))]':
30-
((!fixedHeader && layout === 'classic') || layout === 'top') && footer,
31+
!fixedHeader && layout === 'classic' && footer,
3132
3233
'!min-h-[calc(100%-var(--tags-view-height)-var(--app-footer-height))]':
33-
!fixedHeader && layout === 'topLeft' && footer,
34+
!fixedHeader && (layout === 'topLeft' || layout === 'top') && footer,
3435
3536
'!min-h-[calc(100%-var(--top-tool-height))]': fixedHeader && layout === 'cutMenu' && footer,
3637

src/layout/components/useRenderLayout.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,9 @@ export const useRenderLayout = () => {
177177
class={[
178178
`${prefixCls}-content-scrollbar`,
179179
{
180-
'mt-[var(--tags-view-height)]': fixedHeader.value
180+
'mt-[var(--tags-view-height)] !pb-[calc(var(--tags-view-height)+var(--app-footer-height))]':
181+
fixedHeader.value,
182+
'pb-[var(--app-footer-height)]': !fixedHeader.value
181183
}
182184
]}
183185
>

src/types/auto-imports.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ declare global {
6262
const useRouter: typeof import('vue-router')['useRouter']
6363
const useSlots: typeof import('vue')['useSlots']
6464
const useTable: typeof import('@/hooks/web/useTable')['useTable']
65+
const useVxeCrudSchemas: typeof import('@/hooks/web/useVxeCrudSchemas')['useVxeCrudSchemas']
66+
const useXTable: typeof import('@/hooks/web/useXTable')['useXTable']
6567
const watch: typeof import('vue')['watch']
6668
const watchEffect: typeof import('vue')['watchEffect']
6769
const watchPostEffect: typeof import('vue')['watchPostEffect']

0 commit comments

Comments
 (0)