|
|
@@ -98,6 +98,7 @@
|
|
|
</FlexCol>
|
|
|
<view v-if="itemType.endsWith('-2') && listLoader.list.value.length % 2 != 0" style="width:50%;" />
|
|
|
</FlexRow>
|
|
|
+ <Empty v-if="listLoader.list.value.length == 0" description="暂无数据" />
|
|
|
<SimplePageListLoader :loader="listLoader" />
|
|
|
</FlexCol>
|
|
|
</template>
|
|
|
@@ -116,6 +117,7 @@ import SearchBar from '@/components/form/SearchBar.vue';
|
|
|
import FlexCol from '@/components/layout/FlexCol.vue';
|
|
|
import FlexRow from '@/components/layout/FlexRow.vue';
|
|
|
import Text from '@/components/basic/Text.vue';
|
|
|
+import Empty from '@/components/feedback/Empty.vue';
|
|
|
|
|
|
function getImage(item: any) {
|
|
|
return item.thumbnail || item.image || AppCofig.defaultImage
|