File tree Expand file tree Collapse file tree 4 files changed +14
-9
lines changed Expand file tree Collapse file tree 4 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 38
38
"@wangeditor/editor-for-vue" : " ^5.1.10" ,
39
39
"@zxcvbn-ts/core" : " ^2.2.1" ,
40
40
"animate.css" : " ^4.1.1" ,
41
- "axios" : " ^1.3.4 " ,
41
+ "axios" : " ^1.3.5 " ,
42
42
"benz-amr-recorder" : " ^1.1.5" ,
43
43
"bpmn-js-token-simulation" : " ^0.10.0" ,
44
44
"camunda-bpmn-moddle" : " ^7.0.1" ,
48
48
"diagram-js" : " ^11.6.0" ,
49
49
"echarts" : " ^5.4.1" ,
50
50
"echarts-wordcloud" : " ^2.1.0" ,
51
- "element-plus" : " 2.3.1 " ,
51
+ "element-plus" : " 2.3.3 " ,
52
52
"fast-xml-parser" : " ^4.1.3" ,
53
53
"highlight.js" : " ^11.7.0" ,
54
- "intro.js" : " ^6 .0.0 " ,
54
+ "intro.js" : " ^7 .0.1 " ,
55
55
"jsencrypt" : " ^3.3.2" ,
56
56
"lodash-es" : " ^4.17.21" ,
57
57
"min-dash" : " ^4.0.0" ,
58
58
"mitt" : " ^3.0.0" ,
59
59
"nprogress" : " ^0.2.0" ,
60
- "pinia" : " ^2.0.33 " ,
60
+ "pinia" : " ^2.0.34 " ,
61
61
"qrcode" : " ^1.5.1" ,
62
62
"qs" : " ^6.11.1" ,
63
63
"steady-xml" : " ^0.1.0" ,
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ type CrudSearchParams = {
29
29
show ?: boolean
30
30
// 接口
31
31
api ?: ( ) => Promise < any >
32
+ // 搜索字段
33
+ field ?: string
32
34
} & Omit < FormSchema , 'field' >
33
35
34
36
type CrudTableParams = {
Original file line number Diff line number Diff line change @@ -21,16 +21,17 @@ const getCaches = computed((): string[] => {
21
21
<template >
22
22
<section
23
23
: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)]',
25
25
{
26
26
'!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,
28
29
29
30
'!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,
31
32
32
33
'!min-h-[calc(100%-var(--tags-view-height)-var(--app-footer-height))]':
33
- !fixedHeader && layout === 'topLeft' && footer,
34
+ !fixedHeader && ( layout === 'topLeft' || layout === 'top') && footer,
34
35
35
36
'!min-h-[calc(100%-var(--top-tool-height))]': fixedHeader && layout === 'cutMenu' && footer,
36
37
Original file line number Diff line number Diff line change @@ -177,7 +177,9 @@ export const useRenderLayout = () => {
177
177
class = { [
178
178
`${ prefixCls } -content-scrollbar` ,
179
179
{
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
181
183
}
182
184
] }
183
185
>
You can’t perform that action at this time.
0 commit comments