12345678910111213141516171819 |
- <template>
- <view class="listContent">
- <view class="list_header">
- <view class="list_text">
- {{main.subject_collection?.name}}
- </view>
- <view class="list_more">
- 更多
- </view>
- </view>
- </view>
- </template>
- <script setup>
- defineProps(['main'])
- </script>
- <style scoped lang="scss">
- </style>
|