diff --git a/src/components/ReAnimateSelector/src/index.vue b/src/components/ReAnimateSelector/src/index.vue
index f748e28b5e..4b4f4ab91f 100644
--- a/src/components/ReAnimateSelector/src/index.vue
+++ b/src/components/ReAnimateSelector/src/index.vue
@@ -9,6 +9,7 @@ defineOptions({
const inputValue = defineModel({ type: String });
+const searchVal = ref();
const animatesList = ref(animates);
const copyAnimatesList = cloneDeep(animatesList);
@@ -48,6 +49,7 @@ function onClear() {
}
function filterMethod(value: any) {
+ searchVal.value = value;
animatesList.value = copyAnimatesList.value.filter((i: string | any[]) =>
i.includes(value)
);
@@ -110,7 +112,7 @@ function onMouseleave() {
diff --git a/src/components/ReIcon/src/Select.vue b/src/components/ReIcon/src/Select.vue
index 32b758ed46..8891e53026 100644
--- a/src/components/ReIcon/src/Select.vue
+++ b/src/components/ReIcon/src/Select.vue
@@ -174,6 +174,11 @@ watch(
/>
+
diff --git a/src/layout/components/notice/noticeList.vue b/src/layout/components/notice/noticeList.vue
index 2d40d953d3..bef2253a3a 100644
--- a/src/layout/components/notice/noticeList.vue
+++ b/src/layout/components/notice/noticeList.vue
@@ -19,5 +19,5 @@ const props = defineProps({
:noticeItem="item"
/>
-
+
diff --git a/src/views/list/card/index.vue b/src/views/list/card/index.vue
index 592154a1b3..c7d6abd557 100644
--- a/src/views/list/card/index.vue
+++ b/src/views/list/card/index.vue
@@ -133,7 +133,7 @@ const handleManageProduct = product => {
v.name.toLowerCase().includes(searchValue.toLowerCase())
).length === 0
"
- description="暂无数据"
+ :description="`${searchValue} 产品不存在`"
/>