| 12345678910111213141516171819 |
- <template>
- <view class="zl-card-list" v-if="list.length">
- </view>
- <view class="ezy-no-sj" v-else>
- <icon></icon>
- <text>暂无数据</text>
- </view>
- </template>
- <script setup>
- const props = defineProps({
- list: {
- type: Object
- }
- })
- </script>
- <style>
- </style>
|