Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-vue": "^10.2.0",
"globals": "^16.2.0",
"less": "^4.3.0",
"less": "4.4.2",
"pinia": "^3.0.2",
"prettier": "^3.5.3",
"typescript": "~5.7.2",
Expand All @@ -76,4 +76,4 @@
"vite-svg-loader": "^5.1.0",
"vue-tsc": "^2.2.8"
}
}
}
2 changes: 1 addition & 1 deletion frontend/src/views/system/audit/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ const initOptions = () => {
<div
v-if="!searchLoading"
class="table-content"
:class="multipleSelectionAll?.length && 'show-pagination_height'"
:class="multipleSelectionAll.length ? 'show-pagination_height' : ''"
>
<filter-text
:total="pageInfo.total"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/system/embedded/Page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ const copyCode = (row: any, key: any = 'app_secret') => {
<div
v-if="!searchLoading"
class="table-content"
:class="multipleSelectionAll.length && 'show-pagination_height'"
:class="multipleSelectionAll.length ? 'show-pagination_height' : ''"
>
<template v-if="!oldKeywords && !fieldList.length">
<EmptyBackground
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/system/member/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ const handleCurrentChange = (val: number) => {
</el-button>
</div>
</div>
<div class="table-content" :class="multipleSelectionAll.length && 'show-pagination_height'">
<div class="table-content" :class="multipleSelectionAll.length ? 'show-pagination_height' : ''">
<div class="preview-or-schema">
<el-table
ref="multipleTableRef"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/system/professional/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ const changeStatus = (id: any, val: any) => {
<div
v-if="!searchLoading"
class="table-content"
:class="multipleSelectionAll?.length && 'show-pagination_height'"
:class="multipleSelectionAll.length ? 'show-pagination_height' : ''"
>
<filter-text
:total="pageInfo.total"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/system/prompt/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ const drawerMainClose = () => {
<div
v-if="!searchLoading"
class="table-content"
:class="multipleSelectionAll?.length && 'show-pagination_height'"
:class="multipleSelectionAll.length ? 'show-pagination_height' : ''"
>
<filter-text
:total="pageInfo.total"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/system/training/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ const onRowFormClose = () => {
<div
v-if="!searchLoading"
class="table-content"
:class="multipleSelectionAll?.length && 'show-pagination_height'"
:class="multipleSelectionAll?.length ? 'show-pagination_height' : ''"
>
<div class="preview-or-schema">
<el-table
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/system/variables/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ const handleCurrentChange = (val: number) => {
<div
v-if="!searchLoading"
class="table-content"
:class="multipleSelectionAll.length && 'show-pagination_height'"
:class="multipleSelectionAll.length ? 'show-pagination_height' : ''"
>
<template v-if="!oldKeywords && !fieldList.length">
<EmptyBackground
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/views/system/workspace/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,10 @@ const handleCurrentChange = (val: number) => {
</el-input>
</div>
</div>
<div class="table-content" :class="multipleSelectionAll.length && 'show-pagination_height'">
<div
class="table-content"
:class="{ 'show-pagination_height': multipleSelectionAll.length > 0 }"
>
<div class="preview-or-schema">
<el-table
ref="multipleTableRef"
Expand Down
Loading