Skip to content

Commit 70a6a64

Browse files
committed
fix: bug fix
1 parent 468f021 commit 70a6a64

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

frontend/src/views/system/embedded/index.vue

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ const handleSearch = () => {
180180
searchLoading.value = true
181181
getList()
182182
.then((res: any) => {
183-
embeddedList.value = res || []
183+
// embeddedList.value = res || []
184184
})
185185
.finally(() => {
186186
searchLoading.value = false
@@ -534,7 +534,11 @@ const saveHandler = () => {
534534
</el-row>
535535
</div>
536536
<template v-if="!keywords && !embeddedListWithSearch.length && !searchLoading">
537-
<EmptyBackground :description="$t('embedded.no_application')" img-type="noneWhite" />
537+
<EmptyBackground
538+
class="ed-empty_custom"
539+
:description="$t('embedded.no_application')"
540+
img-type="noneWhite"
541+
/>
538542

539543
<div style="text-align: center; margin-top: -10px">
540544
<el-popover popper-class="system-embedded_user" placement="bottom">
@@ -927,9 +931,10 @@ const saveHandler = () => {
927931
height: 100%;
928932
padding: 16px 0 16px 0;
929933
930-
.ed-empty {
934+
.ed-empty_custom {
931935
padding-top: 200px;
932936
padding-bottom: 0;
937+
height: auto;
933938
}
934939
.tool-left {
935940
display: flex;

0 commit comments

Comments
 (0)