123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <div class="right-screen-list-wrap">
- <BigScreenList
- :catalog-info="catalogInfo"
- :type="type"
- />
- </div>
- </template>
- <script>
- import BigScreenList from 'packages/BigScreenList'
- export default {
- name: '',
- props: {
- catalogInfo: {
- type: Object,
- default: () => ({
- isAll: false,
- page: {}
- })
- },
- type: {
- type: String,
- default: 'bigScreenCatalog'
- }
- },
- components: { BigScreenList },
- data () {
- return {
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .right-screen-list-wrap {
- width: 100%;
- }
- </style>
|