12345678910111213141516171819202122232425262728293031323334353637383940 |
- <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%;
- // height: 100%;
- }
- </style>
|