fix: 更新未安装插件列表的过滤提示信息

This commit is contained in:
jxxghp
2025-04-15 21:24:16 +08:00
parent 526d2c7085
commit 017656f592
+4 -2
View File
@@ -358,6 +358,8 @@ watch([marketList, filterForm], () => {
const filterText = (filter: string, value: string | undefined) => const filterText = (filter: string, value: string | undefined) =>
!filter || (value && value.toLowerCase().includes(filter.toLowerCase())) !filter || (value && value.toLowerCase().includes(filter.toLowerCase()))
sortedUninstalledList.value = []
// 过滤 // 过滤
marketList.value.forEach(value => { marketList.value.forEach(value => {
if (value) { if (value) {
@@ -631,8 +633,8 @@ onMounted(async () => {
<NoDataFound <NoDataFound
v-if="displayUninstalledList.length === 0 && isAppMarketLoaded" v-if="displayUninstalledList.length === 0 && isAppMarketLoaded"
error-code="404" error-code="404"
error-title="没有未安装插件" error-title="没有数据"
error-description="所有可用插件均已安装" error-description="所有可用插件均已安装如有筛选请调整筛选条件"
/> />
</div> </div>
</transition> </transition>