yyList.vue 267 B

12345678910111213141516171819
  1. <template>
  2. <view class="zl-card-list" v-if="list.length">
  3. </view>
  4. <view class="ezy-no-sj" v-else>
  5. <icon></icon>
  6. <text>暂无数据</text>
  7. </view>
  8. </template>
  9. <script setup>
  10. const props = defineProps({
  11. list: {
  12. type: Object
  13. }
  14. })
  15. </script>
  16. <style>
  17. </style>