新增对接追剧数据

This commit is contained in:
gyq
2025-01-07 11:02:41 +08:00
parent 425673707f
commit 3d387be4eb
3 changed files with 47 additions and 60 deletions

View File

@@ -0,0 +1,26 @@
<template>
<view class="container">
<up-empty :icon="props.icon" :text="props.text"></up-empty>
</view>
</template>
<script setup>
const props = defineProps({
icon: {
type: String,
default: '/static/default/none.png'
},
text: {
type: String,
default: '空空如也~'
}
});
</script>
<style scoped lang="scss">
.container {
width: 100%;
display: flex;
justify-content: center;
}
</style>