| 123456789101112131415161718192021222324 |
- <template>
- <view class="zl-card-list" v-if="list.length">
- <template v-for="{chanpin,content:item} in list">
- <!-- <jstxCard v-if="chanpin == 'jisuantexun'" :item="item" :key="item.ziliaoId"></jstxCard> -->
- </template>
-
- </view>
- <view class="ezy-no-sj" v-else>
- <icon></icon>
- <text>暂无数据</text>
- </view>
- </template>
- <script setup>
- import jstxCard from './jstxCard.vue';
- const props = defineProps({
- list: {
- type: Object
- }
- })
- </script>
- <style>
- </style>
|